aboutsummaryrefslogtreecommitdiff
path: root/src/wallet
diff options
context:
space:
mode:
authorJonas Schnelli <dev@jonasschnelli.ch>2020-10-20 17:26:03 +0200
committerJonas Schnelli <dev@jonasschnelli.ch>2020-10-21 13:28:15 +0200
commitfa4074b395a47c54069bd9f598244701505ff11d (patch)
tree26df3ae0570ddfb226bf36b14d4168ee95a5ef39 /src/wallet
parentf5bd46a4cc6d395ce71ecb99852c1774235a249c (diff)
downloadbitcoin-fa4074b395a47c54069bd9f598244701505ff11d.tar.xz
Show name, format and if uses descriptors in bitcoin-wallet tool
Diffstat (limited to 'src/wallet')
-rw-r--r--src/wallet/wallettool.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/wallet/wallettool.cpp b/src/wallet/wallettool.cpp
index 4452840eb1..0e18d6a740 100644
--- a/src/wallet/wallettool.cpp
+++ b/src/wallet/wallettool.cpp
@@ -95,6 +95,9 @@ static void WalletShowInfo(CWallet* wallet_instance)
LOCK(wallet_instance->cs_wallet);
tfm::format(std::cout, "Wallet info\n===========\n");
+ tfm::format(std::cout, "Name: %s\n", wallet_instance->GetName());
+ tfm::format(std::cout, "Format: %s\n", wallet_instance->GetDatabase().Format());
+ tfm::format(std::cout, "Descriptors: %s\n", wallet_instance->IsWalletFlagSet(WALLET_FLAG_DESCRIPTORS) ? "yes" : "no");
tfm::format(std::cout, "Encrypted: %s\n", wallet_instance->IsCrypted() ? "yes" : "no");
tfm::format(std::cout, "HD (hd seed available): %s\n", wallet_instance->IsHDEnabled() ? "yes" : "no");
tfm::format(std::cout, "Keypool Size: %u\n", wallet_instance->GetKeyPoolSize());