Exception: BTC::TransactionBuilder::InsufficientFundsError
Overview
Unspent outputs are not sufficient to build the transaction.
Instance Attribute Summary collapse
-
#result ⇒ Object
Returns the value of attribute result.
Instance Method Summary collapse
-
#initialize(result = nil) ⇒ InsufficientFundsError
constructor
A new instance of InsufficientFundsError.
Constructor Details
#initialize(result = nil) ⇒ InsufficientFundsError
Returns a new instance of InsufficientFundsError.
15 16 17 |
# File 'lib/btcruby/transaction_builder/errors.rb', line 15 def initialize(result = nil) @result = result end |
Instance Attribute Details
#result ⇒ Object
Returns the value of attribute result.
14 15 16 |
# File 'lib/btcruby/transaction_builder/errors.rb', line 14 def result @result end |