aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet.h
diff options
context:
space:
mode:
authorKarl-Johan Alm <karljohan-alm@garage.co.jp>2019-05-24 14:55:27 +0900
committerKarl-Johan Alm <karljohan-alm@garage.co.jp>2019-05-29 18:23:45 +0900
commit129a5bafd9a3efa2fa16d780885048a06566d262 (patch)
tree0d2897fb378f8fae086601605c7dfce4ac0525f3 /src/wallet/wallet.h
parentab6d18e6f83ec0d8ccd105b7b05afb7c76354d04 (diff)
downloadbitcoin-129a5bafd9a3efa2fa16d780885048a06566d262.tar.xz
wallet: rename g_known_wallet_flags constant to KNOWN_WALLET_FLAGS
Diffstat (limited to 'src/wallet/wallet.h')
-rw-r--r--src/wallet/wallet.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet.h b/src/wallet/wallet.h
index 87aff09039..56046e421a 100644
--- a/src/wallet/wallet.h
+++ b/src/wallet/wallet.h
@@ -139,7 +139,7 @@ enum WalletFlags : uint64_t {
WALLET_FLAG_BLANK_WALLET = (1ULL << 33),
};
-static constexpr uint64_t g_known_wallet_flags = WALLET_FLAG_DISABLE_PRIVATE_KEYS | WALLET_FLAG_BLANK_WALLET | WALLET_FLAG_KEY_ORIGIN_METADATA;
+static constexpr uint64_t KNOWN_WALLET_FLAGS = WALLET_FLAG_DISABLE_PRIVATE_KEYS | WALLET_FLAG_BLANK_WALLET | WALLET_FLAG_KEY_ORIGIN_METADATA;
/** A key from a CWallet's keypool
*