diff options
Diffstat (limited to 'main.qml')
| -rw-r--r-- | main.qml | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -999,7 +999,7 @@ ApplicationWindow { // called on "getProof" function handleGetProof(txid, address, message, amount) { - if (amount.length > 0) { + if (amount !== null && amount.length > 0) { var result = currentWallet.getReserveProof(false, currentWallet.currentSubaddressAccount, walletManager.amountFromString(amount), message) txProofComputed(null, result) } else { |
