aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet.cpp
diff options
context:
space:
mode:
authorSjors Provoost <sjors@sprovoost.nl>2019-10-12 12:27:56 +0200
committerSjors Provoost <sjors@sprovoost.nl>2020-02-04 11:18:02 +0100
commit5efc25f9638866941028454cfa9bae27f1519cb4 (patch)
treed5f78d3301b31d40eca2e60a2c2877d5ddf33a37 /src/wallet/wallet.cpp
parent02fafdd12ccad91d4fdebb010134d84a31c055f3 (diff)
downloadbitcoin-5efc25f9638866941028454cfa9bae27f1519cb4.tar.xz
[wallet] translate "Keypool ran out" message
Diffstat (limited to 'src/wallet/wallet.cpp')
-rw-r--r--src/wallet/wallet.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp
index 4a38571dfc..b53c251131 100644
--- a/src/wallet/wallet.cpp
+++ b/src/wallet/wallet.cpp
@@ -2638,7 +2638,7 @@ bool CWallet::CreateTransaction(interfaces::Chain::Lock& locked_chain, const std
bool ret = reservedest.GetReservedDestination(dest, true);
if (!ret)
{
- strFailReason = "Keypool ran out, please call keypoolrefill first";
+ strFailReason = _("Keypool ran out, please call keypoolrefill first").translated;
return false;
}
@@ -3161,7 +3161,7 @@ bool CWallet::GetNewChangeDestination(const OutputType type, CTxDestination& des
ReserveDestination reservedest(this, type);
if (!reservedest.GetReservedDestination(dest, true)) {
- error = "Error: Keypool ran out, please call keypoolrefill first";
+ error = _("Error: Keypool ran out, please call keypoolrefill first").translated;
return false;
}