From 76302d945c667b4ac7fc252f075d9c4e7bd61e0a Mon Sep 17 00:00:00 2001 From: Gaon3 <89095198+Gaon3@users.noreply.github.com> Date: Wed, 14 Jun 2023 12:21:01 +0300 Subject: [PATCH] Fixed compilation error (rename shareable_db to factory) (#3138) --- bin/reth/src/stage/run.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/reth/src/stage/run.rs b/bin/reth/src/stage/run.rs index 573c7be404..592d0d66c9 100644 --- a/bin/reth/src/stage/run.rs +++ b/bin/reth/src/stage/run.rs @@ -233,7 +233,7 @@ impl Command { if self.commit { provider_rw.commit()?; - provider_rw = shareable_db.provider_rw().map_err(PipelineError::Interface)?; + provider_rw = factory.provider_rw().map_err(PipelineError::Interface)?; } } }