Sha256: 40bac16736859a2754116df3ece9cf574596d30edd8eb50c42559138f8fc4146
Contents?: true
Size: 1008 Bytes
Versions: 32
Compression:
Stored size: 1008 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; # uint32 overlayMinVersion; # Hash networkID; # string versionStr<100>; # int listeningPort; # NodeID peerID; # AuthCert cert; # uint256 nonce; # }; # # =========================================================================== module Stellar class Hello < XDR::Struct attribute :ledger_version, Uint32 attribute :overlay_version, Uint32 attribute :overlay_min_version, Uint32 attribute :network_id, Hash attribute :version_str, XDR::String[100] attribute :listening_port, XDR::Int attribute :peer_id, NodeID attribute :cert, AuthCert attribute :nonce, Uint256 end end
Version data entries
32 entries across 32 versions & 2 rubygems