Skip to content

Commit

Permalink
fix: continue instead of bypassing the whole loop
Browse files Browse the repository at this point in the history
  • Loading branch information
renancloudwalk committed Feb 23, 2024
1 parent 28d73b6 commit 15943c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/eth/storage/postgres/postgres.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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")?;
Expand Down

0 comments on commit 15943c5

Please sign in to comment.