Fix: successful execution of 'reth stage --commit' did not write results to the database (#4027)

This commit is contained in:
令狐一冲
2023-08-03 17:42:00 +08:00
committed by GitHub
parent 8c70524fc6
commit ce6e24770e

View File

@ -265,6 +265,10 @@ impl Command {
}
}
if self.commit {
provider_rw.commit()?;
}
Ok(())
}
}