aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2021-08-16 14:16:03 +0800
committerfanquake <fanquake@gmail.com>2021-08-16 16:04:53 +0800
commit2d7534bd93ec78609e187beaea64f1d1bdb1f81a (patch)
treeaf87254863cd01dd5f3ccda94757d44994de86ad /src
parent14b480240539eee8d296ed1ac6ec674b34635433 (diff)
downloadbitcoin-2d7534bd93ec78609e187beaea64f1d1bdb1f81a.tar.xz
wallet: use PACKAGE_NAME instead of "Bitcoin" in rpcdump
Diffstat (limited to 'src')
-rw-r--r--src/wallet/rpcdump.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/rpcdump.cpp b/src/wallet/rpcdump.cpp
index 94680c03f9..72c60c8fe2 100644
--- a/src/wallet/rpcdump.cpp
+++ b/src/wallet/rpcdump.cpp
@@ -784,7 +784,7 @@ RPCHelpMan dumpwallet()
std::sort(vKeyBirth.begin(), vKeyBirth.end());
// produce output
- file << strprintf("# Wallet dump created by Bitcoin %s\n", FormatFullVersion());
+ file << strprintf("# Wallet dump created by %s %s\n", PACKAGE_NAME, FormatFullVersion());
file << strprintf("# * Created on %s\n", FormatISO8601DateTime(GetTime()));
file << strprintf("# * Best block at time of backup was %i (%s),\n", wallet.GetLastBlockHeight(), wallet.GetLastBlockHash().ToString());
file << strprintf("# mined on %s\n", FormatISO8601DateTime(block_time));