Page MenuHomePhabricator

validation: pass ChainstateRole for validationinterface calls
ClosedPublic

Authored by PiRK on Thu, Apr 3, 13:38.

Details

Summary

This allows consumers to decide how to handle events from background or assumedvalid chainstates.
For now there is no change in behavior.

This is a partial backport of core#27596
https://github.com/bitcoin/bitcoin/pull/27596/commits/c6af23c5179cc383f8e6c275373af8d11e6a989f
https://github.com/bitcoin/bitcoin/pull/27596/commits/4d8f4dcb450d31e4847804e62bf91545b949fa14

Depends on D17889

Test Plan

ninja all check-all
Tested on my dev branch (full mainnet IBD + function test)

Diff Detail

Repository
rABC Bitcoin ABC
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

PiRK requested review of this revision.Thu, Apr 3, 13:38

revert unrelated blank line changes

roqqit requested changes to this revision.Thu, Apr 3, 17:29
roqqit added a subscriber: roqqit.
roqqit added inline comments.
chronik/chronik-cpp/chronik_validationinterface.cpp
54 ↗(On Diff #53357)

does chronik assume a new block connected is always the tip? if so, this needs to be looked at

src/kernel/chain.h
9 ↗(On Diff #53357)

What's the plan for the out-of-order backport from PR25494?

src/test/validationinterface_tests.cpp
7 ↗(On Diff #53357)

I see it in the original PR but is it necessary?

This revision now requires changes to proceed.Thu, Apr 3, 17:29
Fabien added inline comments.
chronik/chronik-cpp/chronik_validationinterface.cpp
54 ↗(On Diff #53357)

For now chronik and assumeutxo are incompatible

chronik/chronik-cpp/chronik_validationinterface.cpp
54 ↗(On Diff #53357)

I do plan to only handle this signal for the background ibd, so that chronik gets the block in the correct order. It will be in the next commit https://github.com/PiRK/bitcoin-abc/pull/1/commits/39ca0b006b2fd9904901ec4507f5cb83ce3bf0ba

But as Fabien says, official proper support for chronik+assumeutxo will come at a later stage.

src/kernel/chain.h
9 ↗(On Diff #53357)

I tried backporting it but found that it brings in all kinds of dependencies to the multiprocess project (https://github.com/bitcoin/bitcoin/issues/28722).

It's something desirable that we probably want to backport at some point, but that is going to take a lot of work just to get started (cmake, dependency to a new IPC library...), so I prefer to avoid it. The only connection to this PR is the creation of this new source file, but nothing in that file added by pr25494 is needed for assumeutxo.

remove unused include in validation_interface_tests, use a forward declaration in other modules where we currently rely on an implicit inclusion via validation.h

This revision is now accepted and ready to land.Thu, Apr 3, 21:49