From 15943c57738a80cdd3bcdf1c1e7d5842a50e6e47 Mon Sep 17 00:00:00 2001 From: renancloudwalk Date: Fri, 23 Feb 2024 09:09:43 -0300 Subject: [PATCH] fix: continue instead of bypassing the whole loop --- src/eth/storage/postgres/postgres.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/eth/storage/postgres/postgres.rs b/src/eth/storage/postgres/postgres.rs index f379102a9..ba6fd6157 100644 --- a/src/eth/storage/postgres/postgres.rs +++ b/src/eth/storage/postgres/postgres.rs @@ -617,7 +617,7 @@ impl PermanentStorage for Postgres { Some(s) => s.value.into(), None => { tracing::trace!("slot value not set, skipping"); - break; + continue; } }; let block_number = i64::try_from(block.header.number).context("failed to convert block number")?;