kernel: Add headerTip method to notifications

This commit is part of the libbitcoinkernel project and seeks to remove
the ChainstateManager's and, more generally, the kernel library's
dependency on interface_ui with options methods in this and the following
few commits. By removing interface_ui from the kernel library, its
dependency on boost is reduced to just boost::multi_index.
This commit is contained in:
TheCharlatan
2023-05-10 22:35:49 +02:00
parent 447761c822
commit 84d71457e7
5 changed files with 19 additions and 2 deletions

View File

@@ -7,6 +7,8 @@
#include <kernel/notifications_interface.h>
#include <cstdint>
class CBlockIndex;
enum class SynchronizationState;
@@ -15,6 +17,8 @@ class KernelNotifications : public kernel::Notifications
{
public:
void blockTip(SynchronizationState state, CBlockIndex& index) override;
void headerTip(SynchronizationState state, int64_t height, int64_t timestamp, bool presync) override;
};
} // namespace node