Browse Source
Merge pull request #931 from Melvillian/bump-max-fee-rate-sanity-check
increase max feerate sanity check from 1000 to 2500
hk-custom-address
Daniel Cousens
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/transaction_builder.js
|
|
@ -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() |
|
|
|