diff options
author | Aurèle Oulès <aurele@oules.com> | 2022-08-12 13:50:25 +0200 |
---|---|---|
committer | Aurèle Oulès <aurele@oules.com> | 2022-10-10 17:43:45 +0200 |
commit | 5d3f98d27879cd6d84b8590e947336e8d09613ed (patch) | |
tree | 1d03734d05e5637e51f27ded3a6b874c92e1094e /src/validation.h | |
parent | 57c192767b0e24e51f2f777668ba6f5173f8960d (diff) |
refactor: Replace m_params with chainman.GetParams()
Fixes a TODO introduced in #24595.
Diffstat (limited to 'src/validation.h')
-rw-r--r-- | src/validation.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/validation.h b/src/validation.h index c882eac408..9e60292beb 100644 --- a/src/validation.h +++ b/src/validation.h @@ -472,10 +472,6 @@ public: //! Chainstate instances. node::BlockManager& m_blockman; - /** Chain parameters for this chainstate */ - /* TODO: replace with m_chainman.GetParams() */ - const CChainParams& m_params; - //! The chainstate manager that owns this chainstate. The reference is //! necessary so that this instance can check whether it is the active //! chainstate within deeply nested method calls. |