diff options
author | Ryan Ofsky <ryan@ofsky.org> | 2022-01-17 20:35:02 -0500 |
---|---|---|
committer | Ryan Ofsky <ryan@ofsky.org> | 2022-07-18 13:39:55 -0500 |
commit | 7878f97bf15b6e7c9b47d1c0d96419b97e1bdcbd (patch) | |
tree | 9367800871923c254038ca199061de2e89569561 /src/index/base.h | |
parent | ee3a079fab2c33b4186b62ab822753954a4e545f (diff) |
indexes, refactor: Remove CChainState use in index CommitInternal method
Replace CommitInternal method with CustomCommit and use interfaces::Chain
instead of CChainState to generate block locator.
This commit does not change behavior in any way, except in the
(m_best_block_index == nullptr) case, which was added recently in
https://github.com/bitcoin/bitcoin/pull/24117 as part of an ongoing attempt to
prevent index corruption if bitcoind is interrupted during startup. New
behavior in that case should be slightly better than the old behavior (skipping
the entire custom+base commit now vs only skipping the base commit previously)
and this might avoid more cases of corruption.
Diffstat (limited to 'src/index/base.h')
-rw-r--r-- | src/index/base.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/index/base.h b/src/index/base.h index 0aee0db054..77c46dd428 100644 --- a/src/index/base.h +++ b/src/index/base.h @@ -104,7 +104,7 @@ protected: /// Virtual method called internally by Commit that can be overridden to atomically /// commit more index state. - virtual bool CommitInternal(CDBBatch& batch); + virtual bool CustomCommit(CDBBatch& batch) { return true; } /// Rewind index to an earlier chain tip during a chain reorg. The tip must /// be an ancestor of the current best block. |