generated/stellar/hello.rb in stellar-base-0.8.0 vs generated/stellar/hello.rb in stellar-base-0.9.0

- old
+ new

@@ -7,10 +7,11 @@ # # struct Hello # { # uint32 ledgerVersion; # uint32 overlayVersion; +# uint32 overlayMinVersion; # Hash networkID; # string versionStr<100>; # int listeningPort; # NodeID peerID; # AuthCert cert; @@ -18,15 +19,16 @@ # }; # # =========================================================================== 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 :cert, AuthCert - attribute :nonce, Uint256 + 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