Skip to content

Commit

Permalink
Merge #1665: Qt: Fix no amount entered message (can be sats too, not …
Browse files Browse the repository at this point in the history
…only BTC)

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

Pull request description:

  Message was wrong since dropdown to switch between BTC and sat amounts was added.

Top commit has no ACKs.

Tree-SHA512: e4f5c85e7fb6f657fe49b8ff1748bc23cbb9bd29dc947991798d907459500423f7348945784798c54ce0e9010a45a5e3e5488b7cdf8b97dd43ec7a45e6bf3fb3
  • Loading branch information
kristapsk committed Feb 14, 2024
2 parents 572341f + cde6b4c commit f83c420
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/joinmarket-qt.py
Original file line number Diff line number Diff line change
Expand Up @@ -1205,7 +1205,7 @@ def validateSingleSend(self):
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:
Expand Down

0 comments on commit f83c420

Please sign in to comment.