increase max feerate sanity check from 1000 to 2500

This commit is contained in:
Melvillian 2017-11-22 10:48:20 -08:00
parent 9c8503cab0
commit f4caa54d9e
No known key found for this signature in database
GPG key ID: 21CC7D68857AD0B9

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