diff options
author | Karl-Johan Alm <karljohan-alm@garage.co.jp> | 2019-05-24 14:55:27 +0900 |
---|---|---|
committer | Karl-Johan Alm <karljohan-alm@garage.co.jp> | 2019-05-29 18:23:45 +0900 |
commit | 129a5bafd9a3efa2fa16d780885048a06566d262 (patch) | |
tree | 0d2897fb378f8fae086601605c7dfce4ac0525f3 /src/wallet/wallet.h | |
parent | ab6d18e6f83ec0d8ccd105b7b05afb7c76354d04 (diff) |
wallet: rename g_known_wallet_flags constant to KNOWN_WALLET_FLAGS
Diffstat (limited to 'src/wallet/wallet.h')
-rw-r--r-- | src/wallet/wallet.h | 2 |
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 * |