Sha256: 22e0ed34b1b5f7fe9e78d669bdeccc5ccd0386f1c0ee37d4b1fea5b52937180a
Contents?: true
Size: 920 Bytes
Versions: 16
Compression:
Stored size: 920 Bytes
Contents
# This code was automatically generated using xdrgen # DO NOT EDIT or your changes may be overwritten require 'xdr' # === xdr source ============================================================ # # struct TransactionMetaV2 # { # LedgerEntryChanges txChangesBefore; // tx level changes before operations # // are applied if any # OperationMeta operations<>; // meta for each operation # LedgerEntryChanges txChangesAfter; // tx level changes after operations are # // applied if any # }; # # =========================================================================== module Stellar class TransactionMetaV2 < XDR::Struct attribute :tx_changes_before, LedgerEntryChanges attribute :operations, XDR::VarArray[OperationMeta] attribute :tx_changes_after, LedgerEntryChanges end end
Version data entries
16 entries across 16 versions & 1 rubygems