Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions Stellar-ledger.x
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ enum StellarValueType
{
STELLAR_VALUE_BASIC = 0,
STELLAR_VALUE_SIGNED = 1
#ifdef CAP_0083
,
STELLAR_VALUE_EMPTY_TX_SET = 2
#endif
};

struct LedgerCloseValueSignature
Expand Down Expand Up @@ -43,6 +47,16 @@ struct StellarValue
void;
case STELLAR_VALUE_SIGNED:
LedgerCloseValueSignature lcValueSignature;
#ifdef CAP_0083
case STELLAR_VALUE_EMPTY_TX_SET:
struct
{
Hash txSetHash;
Comment thread
bboston7 marked this conversation as resolved.
Hash previousLedgerHash;
uint32 previousLedgerVersion;
LedgerCloseValueSignature lcValueSignature;
} proposedValue;
Comment thread
bboston7 marked this conversation as resolved.
#endif
}
ext;
};
Expand Down
Loading