From 281fd1a4a032cded7f9ea9857e3e99fc793c714b Mon Sep 17 00:00:00 2001 From: Andrew Chow Date: Mon, 28 Sep 2020 19:34:38 -0400 Subject: [PATCH] Replace KeyIDHasher with SaltedSipHasher --- src/wallet/scriptpubkeyman.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wallet/scriptpubkeyman.h b/src/wallet/scriptpubkeyman.h index 63c10b7a0d..85d98eb4a7 100644 --- a/src/wallet/scriptpubkeyman.h +++ b/src/wallet/scriptpubkeyman.h @@ -303,7 +303,7 @@ private: /* the HD chain data model (external chain counters) */ CHDChain m_hd_chain; - std::unordered_map m_inactive_hd_chains; + std::unordered_map m_inactive_hd_chains; /* HD derive new child key (on internal or external chain) */ void DeriveNewChildKey(WalletBatch& batch, CKeyMetadata& metadata, CKey& secret, CHDChain& hd_chain, bool internal = false) EXCLUSIVE_LOCKS_REQUIRED(cs_KeyStore);