Skip to content

Commit 7e94eb8

Browse files
committed
qml: Specify maximum BTC amount in error string
1 parent 289cbcc commit 7e94eb8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/qml/models/sendrecipient.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ void SendRecipient::validateAmount()
128128
if (m_amount->satoshi() <= 0) {
129129
setAmountError(tr("Amount must be greater than zero"));
130130
} else if (m_amount->satoshi() > MAX_MONEY) {
131-
setAmountError(tr("Amount exceeds maximum limit"));
131+
setAmountError(tr("Amount exceeds maximum limit of 21,000,000 BTC"));
132132
} else if (m_amount->satoshi() > m_wallet->balanceSatoshi()) {
133133
setAmountError(tr("Amount exceeds available balance"));
134134
}

0 commit comments

Comments
 (0)