First completed round trip test of sFUL/FUSD -> FULM
After all of the trials and tribulations, we finally have a viable prototype! The code is working for conversions of all kinds. There are a number of strange and annoying bugs still present, like the rings in the CLI wallet are misbehaving at times. But we have a viable product.
This commit is contained in:
@@ -645,6 +645,20 @@ namespace cryptonote
|
||||
};
|
||||
//---------------------------------------------------------------
|
||||
|
||||
struct origin_data
|
||||
{
|
||||
uint8_t tx_type;
|
||||
crypto::public_key tx_pub_key;
|
||||
crypto::key_image input_k_image;
|
||||
crypto::ec_scalar uniqueness;
|
||||
|
||||
BEGIN_SERIALIZE_OBJECT()
|
||||
VARINT_FIELD(tx_type)
|
||||
FIELD(tx_pub_key)
|
||||
FIELD(input_k_image)
|
||||
//FIELD(uniqueness)
|
||||
END_SERIALIZE()
|
||||
};
|
||||
}
|
||||
|
||||
namespace std {
|
||||
|
||||
Reference in New Issue
Block a user