Skip to content
This repository was archived by the owner on Apr 3, 2019. It is now read-only.

Commit a3edf92

Browse files
authored
Merge pull request #409 from matiu/bug/required-fee
disable multisig required fee check
2 parents 137256c + 7b342d4 commit a3edf92

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

lib/verifier.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -180,9 +180,9 @@ Verifier.checkPaypro = function(txp, payproOpts) {
180180
amount = txp.amount;
181181
}
182182

183-
if (feeRate && payproOpts.requiredFeeRate &&
184-
feeRate < payproOpts.requiredFeeRate)
185-
return false;
183+
// if (feeRate && payproOpts.requiredFeeRate &&
184+
// feeRate < payproOpts.requiredFeeRate)
185+
// return false;
186186

187187
return toAddress == payproOpts.toAddress && amount == payproOpts.amount;
188188
};

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "bitcore-wallet-client",
33
"description": "Client for bitcore-wallet-service",
44
"author": "BitPay Inc",
5-
"version": "6.7.1",
5+
"version": "6.7.2",
66
"license": "MIT",
77
"keywords": [
88
"bitcoin",

0 commit comments

Comments
 (0)