Merge pull request #931 from Melvillian/bump-max-fee-rate-sanity-check
increase max feerate sanity check from 1000 to 2500
This commit is contained in:
commit
86cd4a44a1
1 changed files with 1 additions and 1 deletions
|
@ -469,7 +469,7 @@ function TransactionBuilder (network, maximumFeeRate) {
|
|||
this.network = network || networks.bitcoin
|
||||
|
||||
// WARNING: This is __NOT__ to be relied on, its just another potential safety mechanism (safety in-depth)
|
||||
this.maximumFeeRate = maximumFeeRate || 1000
|
||||
this.maximumFeeRate = maximumFeeRate || 2500
|
||||
|
||||
this.inputs = []
|
||||
this.tx = new Transaction()
|
||||
|
|
Loading…
Reference in a new issue