Skip to content

Commit

Permalink
omit changes check on writting
Browse files Browse the repository at this point in the history
  • Loading branch information
rakita committed Jul 18, 2023
1 parent aaf94ad commit 1d6afcb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/stages/src/stages/execution.rs
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,8 @@ impl<EF: ExecutorFactory> ExecutionStage<EF> {

let start = Instant::now();
// write output
state.write_to_db(provider.tx_ref(), false)?;
// TODO(rakita) we should revert to omit_changed to true. this is just for a quick check for a bug.
state.write_to_db(provider.tx_ref(), true)?;

info!(target: "sync::stages::execution", took = ?start.elapsed(), "Wrote state");

Expand Down

0 comments on commit 1d6afcb

Please sign in to comment.