on_block_accepted logging and webhooks all the time (#3486)

This commit is contained in:
Antioch Peverell 2020-11-09 17:11:27 +00:00 committed by GitHub
parent 25fcefada2
commit 49cccea035
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -737,11 +737,13 @@ where
V: VerifierCache + 'static,
{
fn block_accepted(&self, b: &core::Block, status: BlockStatus, opts: Options) {
// not broadcasting blocks received through sync
if !opts.contains(chain::Options::SYNC) {
// Trigger all registered "on_block_accepted" hooks (logging and webhooks).
for hook in &self.hooks {
hook.on_block_accepted(b, status);
}
// Suppress broadcast of new blocks received during sync.
if !opts.contains(chain::Options::SYNC) {
// If we mined the block then we want to broadcast the compact block.
// If we received the block from another node then broadcast "header first"
// to minimize network traffic.