isTransactionOutputDust() returns whether or not the passed transaction output
amount is considered dust or not based on the configured minimum transaction
relay fee.
Dust is defined in terms of the minimum transaction relay fee. In particular,
if the cost to the network to spend coins is more than 1/3 of the minimum
transaction relay fee, it is considered dust.
It is exposed by MiningManager for use by transaction generators and wallets.
Parameters
transaction_output: any
Returns boolean
StaticmaximumStandardTransactionMass
maximumStandardTransactionMass(): number
maximumStandardTransactionMass() is the maximum mass allowed for transactions that
are considered standard and will therefore be relayed and considered for mining.
minimumRelayTransactionFee() specifies the minimum transaction fee for a transaction to be accepted to
the mempool and relayed. It is specified in sompi per 1kg (or 1000 grams) of transaction mass.
minimum_required_transaction_relay_fee returns the minimum transaction fee required
for a transaction with the passed mass to be accepted into the mempool and relayed.
isTransactionOutputDust()
returns whether or not the passed transaction output amount is considered dust or not based on the configured minimum transaction relay fee.Dust is defined in terms of the minimum transaction relay fee. In particular, if the cost to the network to spend coins is more than 1/3 of the minimum transaction relay fee, it is considered dust.
It is exposed by
MiningManager
for use by transaction generators and wallets.