xdr/Stellar-ledger.x in stellar-base-0.11.0 vs xdr/Stellar-ledger.x in stellar-base-0.12.0

- old
+ new

@@ -142,15 +142,14 @@ LedgerKey deadEntry; }; // Transaction sets are the unit used by SCP to decide on transitions // between ledgers -const MAX_TX_PER_LEDGER = 5000; struct TransactionSet { Hash previousLedgerHash; - TransactionEnvelope txs<MAX_TX_PER_LEDGER>; + TransactionEnvelope txs<>; }; struct TransactionResultPair { Hash transactionHash; @@ -158,10 +157,10 @@ }; // TransactionResultSet is used to recover results between ledgers struct TransactionResultSet { - TransactionResultPair results<MAX_TX_PER_LEDGER>; + TransactionResultPair results<>; }; // Entries below are used in the historical subsystem struct TransactionHistoryEntry