Sha256: fb3ce796e303fa529163ed175f5225cdaaabca496df66f633fa6d87539954fa4
Contents?: true
Size: 1.25 KB
Versions: 30
Compression:
Stored size: 1.25 KB
Contents
# This code was automatically generated using xdrgen # DO NOT EDIT or your changes may be overwritten require 'xdr' # === xdr source ============================================================ # # struct Transaction # { # // account used to run the transaction # AccountID sourceAccount; # # // the fee the sourceAccount will pay # uint32 fee; # # // sequence number to consume in the account # SequenceNumber seqNum; # # // validity range (inclusive) for the last ledger close time # TimeBounds* timeBounds; # # Memo memo; # # Operation operations<100>; # # // reserved for future use # union switch (int v) # { # case 0: # void; # } # ext; # }; # # =========================================================================== module Stellar class Transaction < XDR::Struct include XDR::Namespace autoload :Ext attribute :source_account, AccountID attribute :fee, Uint32 attribute :seq_num, SequenceNumber attribute :time_bounds, XDR::Option[TimeBounds] attribute :memo, Memo attribute :operations, XDR::VarArray[Operation, 100] attribute :ext, Ext end end
Version data entries
30 entries across 30 versions & 3 rubygems