Fix missed block logs (#4922)

This commit is contained in:
Michael Sproul 2023-11-16 14:07:58 +03:00 committed by GitHub
parent e181741d38
commit d04e361129
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -621,19 +621,19 @@ impl<T: EthSpec> ValidatorMonitor<T> {
"parent block root" => ?prev_block_root,
);
}
} else {
warn!(
self.log,
"Missing validator index";
"info" => "potentially inconsistency in the validator manager",
"index" => i,
)
}
} else {
warn!(
self.log,
"Missing validator index";
"info" => "potentially inconsistency in the validator manager",
"index" => i,
)
}
} else {
debug!(
self.log,
"Could not get proposers for from cache";
"Could not get proposers from cache";
"epoch" => ?slot_epoch
);
}