Sha256: 5ca86b27e1a2f7b64a9ee1ce234fbb1120777c1192d6256168ba437432454989
Contents?: true
Size: 1.11 KB
Versions: 12
Compression:
Stored size: 1.11 KB
Contents
# This code was automatically generated using xdrgen # DO NOT EDIT or your changes may be overwritten require 'xdr' # === xdr source ============================================================ # # struct StellarValue # { # Hash txSetHash; // transaction set to apply to previous ledger # uint64 closeTime; // network close time # # // upgrades to apply to the previous ledger (usually empty) # // this is a vector of encoded 'LedgerUpgrade' so that nodes can drop # // unknown steps during consensus if needed. # // see notes below on 'LedgerUpgrade' for more detail # UpgradeType upgrades<4>; # # // reserved for future use # union switch (int v) # { # case 0: # void; # } # ext; # }; # # =========================================================================== module Stellar class StellarValue < XDR::Struct include XDR::Namespace autoload :Ext attribute :tx_set_hash, Hash attribute :close_time, Uint64 attribute :upgrades, XDR::VarArray[UpgradeType, 4] attribute :ext, Ext end end
Version data entries
12 entries across 12 versions & 2 rubygems