You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
string strError = _("Error: Wallet locked, unable to create transaction");
1299
+
string strError = _("Error: Wallet locked, unable to create transaction!");
1300
1300
printf("SendMoney() : %s", strError.c_str());
1301
1301
return strError;
1302
1302
}
1303
1303
if (!CreateTransaction(scriptPubKey, nValue, wtxNew, reservekey, nFeeRequired))
1304
1304
{
1305
1305
string strError;
1306
1306
if (nValue + nFeeRequired > GetBalance())
1307
-
strError = strprintf(_("Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds"), FormatMoney(nFeeRequired).c_str());
1307
+
strError = strprintf(_("Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds!"), FormatMoney(nFeeRequired).c_str());
return_("Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here.");
1318
+
return_("Error: The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here.");
0 commit comments