Sha256: 2949eb9dc44e28f1e8e3779a892ab690965a8fee598ee4ade756f8ccbcfaaab7
Contents?: true
Size: 835 Bytes
Versions: 1
Compression:
Stored size: 835 Bytes
Contents
# This code was automatically generated using xdrgen # DO NOT EDIT or your changes may be overwritten require 'xdr' # === xdr source ============================================================ # # struct Hello # { # uint32 ledgerVersion; # uint32 overlayVersion; # Hash networkID; # string versionStr<100>; # int listeningPort; # NodeID peerID; # uint256 nonce; # }; # # =========================================================================== module Stellar class Hello < XDR::Struct attribute :ledger_version, Uint32 attribute :overlay_version, Uint32 attribute :network_id, Hash attribute :version_str, XDR::String[100] attribute :listening_port, XDR::Int attribute :peer_id, NodeID attribute :nonce, Uint256 end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
stellar-base-0.5.0 | generated/stellar/hello.rb |