Skip to content

Commit 3dc5343

Browse files
committed
test(corpocessor): debug e2e
1 parent d437be5 commit 3dc5343

File tree

1 file changed

+2
-0
lines changed
  • coprocessor/fhevm-engine/host-listener/src/database

1 file changed

+2
-0
lines changed

coprocessor/fhevm-engine/host-listener/src/database/ingest.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -332,6 +332,7 @@ pub async fn update_finalized_blocks(
332332
last_block_number: u64,
333333
finality_lag: u64,
334334
) {
335+
info!(last_block_number, finality_lag, "Updating finalized blocks");
335336
let mut tx = match db.new_transaction().await {
336337
Ok(tx) => tx,
337338
Err(err) => {
@@ -359,6 +360,7 @@ pub async fn update_finalized_blocks(
359360
return;
360361
}
361362
};
363+
info!(?blocks_number, "Finalizing blocks");
362364
for block_number in blocks_number {
363365
let block =
364366
match log_iter.get_block_by_number(block_number as u64).await {

0 commit comments

Comments
 (0)