aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/scriptpubkeyman.h
diff options
context:
space:
mode:
authorMartin Zumsande <mzumsande@gmail.com>2021-05-11 00:22:14 +0200
committerMartin Zumsande <mzumsande@gmail.com>2021-08-22 17:31:58 +0200
commit16652a93ea6d25674fe318ef5e213e98427c8947 (patch)
treeb11ad4154549ba14eb07dc84a7f773fb971a9e72 /src/wallet/scriptpubkeyman.h
parente9d6eb1b8071805cec1cc4e1352a13a7adc55ca8 (diff)
downloadbitcoin-16652a93ea6d25674fe318ef5e213e98427c8947.tar.xz
refactor: Remove unused KeyIDHasher
Diffstat (limited to 'src/wallet/scriptpubkeyman.h')
-rw-r--r--src/wallet/scriptpubkeyman.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/wallet/scriptpubkeyman.h b/src/wallet/scriptpubkeyman.h
index 93e1886102..ef74638751 100644
--- a/src/wallet/scriptpubkeyman.h
+++ b/src/wallet/scriptpubkeyman.h
@@ -148,17 +148,6 @@ public:
}
};
-class KeyIDHasher
-{
-public:
- KeyIDHasher() {}
-
- size_t operator()(const CKeyID& id) const
- {
- return id.GetUint64(0);
- }
-};
-
/*
* A class implementing ScriptPubKeyMan manages some (or all) scriptPubKeys used in a wallet.
* It contains the scripts and keys related to the scriptPubKeys it manages.