Class: Bitcoin::OutPoint
Overview
outpoint class
Constant Summary collapse
- COINBASE_HASH =
'0000000000000000000000000000000000000000000000000000000000000000'
- COINBASE_INDEX =
4294967295
Instance Attribute Summary collapse
-
#index ⇒ Object
readonly
Returns the value of attribute index.
-
#tx_hash ⇒ Object
readonly
Returns the value of attribute tx_hash.
Class Method Summary collapse
Instance Method Summary collapse
- #coinbase? ⇒ Boolean
-
#initialize(tx_hash, index = -1)) ⇒ OutPoint
constructor
A new instance of OutPoint.
- #to_payload ⇒ Object
- #to_s ⇒ Object
-
#txid ⇒ Object
convert hash to txid.
- #valid? ⇒ Boolean
Constructor Details
#initialize(tx_hash, index = -1)) ⇒ OutPoint
Returns a new instance of OutPoint.
12 13 14 15 |
# File 'lib/bitcoin/out_point.rb', line 12 def initialize(tx_hash, index = -1) @tx_hash = tx_hash @index = index end |
Instance Attribute Details
#index ⇒ Object (readonly)
Returns the value of attribute index.
10 11 12 |
# File 'lib/bitcoin/out_point.rb', line 10 def index @index end |
#tx_hash ⇒ Object (readonly)
Returns the value of attribute tx_hash.
9 10 11 |
# File 'lib/bitcoin/out_point.rb', line 9 def tx_hash @tx_hash end |
Class Method Details
.create_coinbase_outpoint ⇒ Object
29 30 31 |
# File 'lib/bitcoin/out_point.rb', line 29 def self.create_coinbase_outpoint new(COINBASE_HASH, COINBASE_INDEX) end |
.from_txid(txid, index) ⇒ Object
17 18 19 |
# File 'lib/bitcoin/out_point.rb', line 17 def self.from_txid(txid, index) self.new(txid.rhex, index) end |
Instance Method Details
#coinbase? ⇒ Boolean
21 22 23 |
# File 'lib/bitcoin/out_point.rb', line 21 def coinbase? tx_hash == COINBASE_HASH && index == COINBASE_INDEX end |
#to_payload ⇒ Object
25 26 27 |
# File 'lib/bitcoin/out_point.rb', line 25 def to_payload [tx_hash.htb, index].pack('a32V') end |
#to_s ⇒ Object
42 43 44 45 |
# File 'lib/bitcoin/out_point.rb', line 42 def to_s return "[#{index}]" unless tx_hash "#{txid}[#{index}]" end |
#txid ⇒ Object
convert hash to txid
38 39 40 |
# File 'lib/bitcoin/out_point.rb', line 38 def txid tx_hash.rhex end |
#valid? ⇒ Boolean
33 34 35 |
# File 'lib/bitcoin/out_point.rb', line 33 def valid? index >= 0 && (!coinbase? && tx_hash != COINBASE_HASH) end |