Sha256: a1a314a1fa303c7a814f1161ae75d1e566973791ad1753fa6bb6fc6d0eea6ec2
Contents?: true
Size: 679 Bytes
Versions: 9
Compression:
Stored size: 679 Bytes
Contents
# This code was automatically generated using xdrgen # DO NOT EDIT or your changes may be overwritten require 'xdr' # === xdr source ============================================================ # # struct TransactionEnvelope # { # Transaction tx; # /* Each decorated signature is a signature over the SHA256 hash of # * a TransactionSignaturePayload */ # DecoratedSignature signatures<20>; # }; # # =========================================================================== module Stellar class TransactionEnvelope < XDR::Struct attribute :tx, Transaction attribute :signatures, XDR::VarArray[DecoratedSignature, 20] end end
Version data entries
9 entries across 9 versions & 1 rubygems