generated/stellar/ledger_entry_change.rb in stellar-base-0.8.0 vs generated/stellar/ledger_entry_change.rb in stellar-base-0.9.0
- old
+ new
@@ -11,21 +11,25 @@
# LedgerEntry created;
# case LEDGER_ENTRY_UPDATED:
# LedgerEntry updated;
# case LEDGER_ENTRY_REMOVED:
# LedgerKey removed;
+# case LEDGER_ENTRY_STATE:
+# LedgerEntry state;
# };
#
# ===========================================================================
module Stellar
class LedgerEntryChange < XDR::Union
switch_on LedgerEntryChangeType, :type
switch :ledger_entry_created, :created
switch :ledger_entry_updated, :updated
switch :ledger_entry_removed, :removed
+ switch :ledger_entry_state, :state
attribute :created, LedgerEntry
attribute :updated, LedgerEntry
attribute :removed, LedgerKey
+ attribute :state, LedgerEntry
end
end