Skip to content

Commit

Permalink
Fix debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
yaziciahmet committed Jul 17, 2024
1 parent e8e043a commit 9798afb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/sequencer/src/sequencer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -615,7 +615,7 @@ where
let pending_db_commitments = self.ledger_db.get_pending_commitments_l2_range()?;
debug!("Pending db commitments: {:?}", pending_db_commitments);
let pending_da_commitments = self.get_pending_da_commitments().await;
debug!("Pending da commitments: {:?}", pending_db_commitments);
debug!("Pending da commitments: {:?}", pending_da_commitments);
// TODO: also take mined DA blocks into account
for (l2_start, l2_end) in pending_db_commitments {
if pending_da_commitments.iter().any(|commitment| {
Expand Down

0 comments on commit 9798afb

Please sign in to comment.