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
parent
commit
86cd4a44a1
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/transaction_builder.js

2
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()

Loading…
Cancel
Save