We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a668f13 commit a74e247Copy full SHA for a74e247
aggregation_mode/payments_poller/src/payments.rs
@@ -10,7 +10,6 @@ use alloy::{
10
providers::{Provider, ProviderBuilder},
11
};
12
use sqlx::types::BigDecimal;
13
-use tracing::info;
14
15
pub struct PaymentsPoller {
16
db: Db,
@@ -63,7 +62,7 @@ impl PaymentsPoller {
63
62
64
65
let from = last_block_fetched.saturating_sub(5);
66
- info!("Fetching logs from block {from} to {current_block}");
+ tracing::info!("Fetching logs from block {from} to {current_block}");
67
68
let Ok(logs) = self
69
.proof_aggregation_service
0 commit comments