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:
Daniel Cousens 2017-11-23 10:10:38 +11:00 committed by GitHub
commit 86cd4a44a1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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