diff --git a/js/models/core/Wallet.js b/js/models/core/Wallet.js index 4ae8a01e4..f8793e623 100644 --- a/js/models/core/Wallet.js +++ b/js/models/core/Wallet.js @@ -718,6 +718,12 @@ Wallet.prototype.sign = function(ntxid, cb) { // if (cb) cb(false); // } // + + if (!self.verifyPaymentRequest(ntxid)) { + if (cb) cb(false); + return; + } + var keys = self.privateKey.getForPaths(txp.inputChainPaths); var b = txp.builder;