We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa4b64d commit 243b5b4Copy full SHA for 243b5b4
src/qml/models/sendrecipient.cpp
@@ -128,7 +128,7 @@ void SendRecipient::validateAmount()
128
if (m_amount->satoshi() <= 0) {
129
setAmountError(tr("Amount must be greater than zero"));
130
} else if (m_amount->satoshi() > MAX_MONEY) {
131
- setAmountError(tr("Amount exceeds maximum limit"));
+ setAmountError(tr("Amount exceeds maximum limit of 21,000,000 BTC"));
132
} else if (m_amount->satoshi() > m_wallet->balanceSatoshi()) {
133
setAmountError(tr("Amount exceeds available balance"));
134
}
0 commit comments