diff options
author | Anthony Towns <aj@erisian.com.au> | 2022-04-15 05:41:19 +1000 |
---|---|---|
committer | Anthony Towns <aj@erisian.com.au> | 2022-05-10 12:09:33 +1000 |
commit | 5c67e84d37d452e9186a6357e5405fabeff241c7 (patch) | |
tree | 34091e8ac118882329768704e8e3095eb209c44a /src/validation.h | |
parent | 38860f93b680f152fc6fc3d9ae574a4c0659e775 (diff) |
validation: replace ::Params() calls with chainstate/chainman member
Diffstat (limited to 'src/validation.h')
-rw-r--r-- | src/validation.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/validation.h b/src/validation.h index d23f0a3716..1c30bcb57d 100644 --- a/src/validation.h +++ b/src/validation.h @@ -498,6 +498,7 @@ public: 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 |