generated/stellar/ledger_entry/data.rb in stellar-base-0.29.0 vs generated/stellar/ledger_entry/data.rb in stellar-base-0.30.0
- old
+ new
@@ -15,10 +15,12 @@
# OfferEntry offer;
# case DATA:
# DataEntry data;
# case CLAIMABLE_BALANCE:
# ClaimableBalanceEntry claimableBalance;
+# case LIQUIDITY_POOL:
+# LiquidityPoolEntry liquidityPool;
# }
#
# ===========================================================================
module Stellar
class LedgerEntry
@@ -28,14 +30,16 @@
switch :account, :account
switch :trustline, :trust_line
switch :offer, :offer
switch :data, :data
switch :claimable_balance, :claimable_balance
+ switch :liquidity_pool, :liquidity_pool
attribute :account, AccountEntry
attribute :trust_line, TrustLineEntry
attribute :offer, OfferEntry
attribute :data, DataEntry
attribute :claimable_balance, ClaimableBalanceEntry
+ attribute :liquidity_pool, LiquidityPoolEntry
end
end
end