diff --git a/bin/reth/src/stage/run.rs b/bin/reth/src/stage/run.rs index 53cb8ec5f4..0ec5d7d4fc 100644 --- a/bin/reth/src/stage/run.rs +++ b/bin/reth/src/stage/run.rs @@ -265,6 +265,10 @@ impl Command { } } + if self.commit { + provider_rw.commit()?; + } + Ok(()) } }