Class: Bitcoin::Message::Tx

Inherits:
Base show all
Defined in:
lib/bitcoin/message/tx.rb

Overview

Constant Summary collapse

COMMAND =
'tx'

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, #sha256, #unpack_boolean, #unpack_var_int, #unpack_var_int_from_io, #unpack_var_string

Constructor Details

#initialize(tx, use_segwit = false) ⇒ Tx

Returns a new instance of Tx.



13
14
15
16
# File 'lib/bitcoin/message/tx.rb', line 13

def initialize(tx, use_segwit = false)
  @tx = tx
  @use_segwit = use_segwit
end

Instance Attribute Details

#txObject

Returns the value of attribute tx.



10
11
12
# File 'lib/bitcoin/message/tx.rb', line 10

def tx
  @tx
end

#use_segwitObject

Returns the value of attribute use_segwit.



11
12
13
# File 'lib/bitcoin/message/tx.rb', line 11

def use_segwit
  @use_segwit
end

Class Method Details

.parse_from_payload(payload) ⇒ Object



18
19
20
21
# File 'lib/bitcoin/message/tx.rb', line 18

def self.parse_from_payload(payload)
  tx = Bitcoin::Tx.parse_from_payload(payload)
  new(tx, tx.witness?)
end

Instance Method Details

#to_payloadObject



23
24
25
# File 'lib/bitcoin/message/tx.rb', line 23

def to_payload
  use_segwit ? tx.to_payload : tx.serialize_old_format
end