Skip to content

Commit 2d7534b

Browse files
committed
wallet: use PACKAGE_NAME instead of "Bitcoin" in rpcdump
1 parent 14b4802 commit 2d7534b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/wallet/rpcdump.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -784,7 +784,7 @@ RPCHelpMan dumpwallet()
784784
std::sort(vKeyBirth.begin(), vKeyBirth.end());
785785

786786
// produce output
787-
file << strprintf("# Wallet dump created by Bitcoin %s\n", FormatFullVersion());
787+
file << strprintf("# Wallet dump created by %s %s\n", PACKAGE_NAME, FormatFullVersion());
788788
file << strprintf("# * Created on %s\n", FormatISO8601DateTime(GetTime()));
789789
file << strprintf("# * Best block at time of backup was %i (%s),\n", wallet.GetLastBlockHeight(), wallet.GetLastBlockHash().ToString());
790790
file << strprintf("# mined on %s\n", FormatISO8601DateTime(block_time));

0 commit comments

Comments
 (0)