Browse Source

Fix no amount entered message (can be sats too, not only BTC)

master
Kristaps Kaupe 2 years ago
parent
commit
cde6b4ca9a
No known key found for this signature in database
GPG Key ID: 33E472FE870C7E5D
  1. 2
      scripts/joinmarket-qt.py

2
scripts/joinmarket-qt.py

@ -1205,7 +1205,7 @@ class SpendTab(QWidget):
if len(self.amountInput.text()) == 0:
JMQtMessageBox(
self,
"Amount, in bitcoins, must be provided.",
"Amount must be provided.",
mbtype='warn', title="Error")
return False
if len(self.changeInput.text().strip()) != 0:

Loading…
Cancel
Save