Exception: BSV::Wallet::PoolDepletedError

Inherits:
WalletError
  • Object
show all
Defined in:
lib/bsv/wallet/errors/pool_depleted_error.rb

Overview

Raised when a UTXO pool has no available outputs for acquisition.

Instance Attribute Summary

Attributes inherited from WalletError

#code

Instance Method Summary collapse

Constructor Details

#initialize(pool_name) ⇒ PoolDepletedError

Returns a new instance of PoolDepletedError.



7
8
9
# File 'lib/bsv/wallet/errors/pool_depleted_error.rb', line 7

def initialize(pool_name)
  super("UTXO pool '#{pool_name}' is depleted; no outputs available for acquisition")
end