generated/stellar/hello.rb in stellar-base-0.4.0 vs generated/stellar/hello.rb in stellar-base-0.5.0

- old
+ new

@@ -7,20 +7,24 @@ # # 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