Class: Tapyrus::Message::Pong

Inherits:
Base
  • Object
show all
Defined in:
lib/tapyrus/message/pong.rb

Overview

Constant Summary collapse

COMMAND =
"pong"

Constants included from Util

Util::DIGEST_NAME_SHA256

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Base

#to_pkt

Methods included from Util

#byte_to_bit, #calc_checksum, #decode_base58_address, #double_sha256, #encode_base58_address, #hash160, #hmac_sha256, #pack_boolean, #pack_var_int, #pack_var_string, #padding_zero, #sha256, #unpack_boolean, #unpack_var_int, #unpack_var_int_from_io, #unpack_var_string, #valid_address?

Methods included from HexConverter

#to_hex

Constructor Details

#initialize(nonce) ⇒ Pong

Returns a new instance of Pong.



10
11
12
# File 'lib/tapyrus/message/pong.rb', line 10

def initialize(nonce)
  @nonce = nonce
end

Instance Attribute Details

#nonceObject (readonly)

Returns the value of attribute nonce.



8
9
10
# File 'lib/tapyrus/message/pong.rb', line 8

def nonce
  @nonce
end

Class Method Details

.parse_from_payload(payload) ⇒ Object



14
15
16
# File 'lib/tapyrus/message/pong.rb', line 14

def self.parse_from_payload(payload)
  new(payload.unpack("Q").first)
end

Instance Method Details

#to_payloadObject



18
19
20
# File 'lib/tapyrus/message/pong.rb', line 18

def to_payload
  [nonce].pack("Q")
end