generated/stellar/operation_id/id.rb in stellar-base-0.27.0 vs generated/stellar/operation_id/id.rb in stellar-base-0.28.0

- old
+ new

@@ -5,19 +5,19 @@ # === xdr source ============================================================ # # struct # { -# MuxedAccount sourceAccount; +# AccountID sourceAccount; # SequenceNumber seqNum; # uint32 opNum; # } # # =========================================================================== module Stellar class OperationID class Id < XDR::Struct - attribute :source_account, MuxedAccount + attribute :source_account, AccountID attribute :seq_num, SequenceNumber attribute :op_num, Uint32 end end end