We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d437be5 commit 3dc5343Copy full SHA for 3dc5343
coprocessor/fhevm-engine/host-listener/src/database/ingest.rs
@@ -332,6 +332,7 @@ pub async fn update_finalized_blocks(
332
last_block_number: u64,
333
finality_lag: u64,
334
) {
335
+ info!(last_block_number, finality_lag, "Updating finalized blocks");
336
let mut tx = match db.new_transaction().await {
337
Ok(tx) => tx,
338
Err(err) => {
@@ -359,6 +360,7 @@ pub async fn update_finalized_blocks(
359
360
return;
361
}
362
};
363
+ info!(?blocks_number, "Finalizing blocks");
364
for block_number in blocks_number {
365
let block =
366
match log_iter.get_block_by_number(block_number as u64).await {
0 commit comments