mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-10 20:03:34 -03:00
wallet: use PACKAGE_NAME instead of "Bitcoin" in rpcdump
This commit is contained in:
parent
14b4802405
commit
2d7534bd93
1 changed files with 1 additions and 1 deletions
|
@ -784,7 +784,7 @@ RPCHelpMan dumpwallet()
|
||||||
std::sort(vKeyBirth.begin(), vKeyBirth.end());
|
std::sort(vKeyBirth.begin(), vKeyBirth.end());
|
||||||
|
|
||||||
// produce output
|
// 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("# * 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("# * Best block at time of backup was %i (%s),\n", wallet.GetLastBlockHeight(), wallet.GetLastBlockHash().ToString());
|
||||||
file << strprintf("# mined on %s\n", FormatISO8601DateTime(block_time));
|
file << strprintf("# mined on %s\n", FormatISO8601DateTime(block_time));
|
||||||
|
|
Loading…
Reference in a new issue