@@ -529,19 +529,17 @@ impl Backend {
529
529
// update all settings related to the forked block
530
530
{
531
531
if let Some ( fork_url) = forking. json_rpc_url {
532
- // Set the fork block number
533
- let mut node_config = self . node_config . write ( ) . await ;
534
- node_config. fork_choice = Some ( ForkChoice :: Block ( fork_block_number) ) ;
535
-
536
- let mut env = self . env . read ( ) . clone ( ) ;
537
- let ( forked_db, client_fork_config) =
538
- node_config. setup_fork_db_config ( fork_url, & mut env, & self . fees ) . await ?;
539
-
540
- * self . db . write ( ) . await = Box :: new ( forked_db) ;
541
- let fork = ClientFork :: new ( client_fork_config, Arc :: clone ( & self . db ) ) ;
542
- * self . fork . write ( ) = Some ( fork) ;
543
- * self . env . write ( ) = env;
532
+ self . reset_block_number ( fork_url, fork_block_number) . await ?;
544
533
} else {
534
+ // If rpc url is unspecified, then update the fork with the new block number and
535
+ // existing rpc url, this updates the cache path
536
+ {
537
+ let maybe_fork_url = { self . node_config . read ( ) . await . eth_rpc_url . clone ( ) } ;
538
+ if let Some ( fork_url) = maybe_fork_url {
539
+ self . reset_block_number ( fork_url, fork_block_number) . await ?;
540
+ }
541
+ }
542
+
545
543
let gas_limit = self . node_config . read ( ) . await . fork_gas_limit ( & fork_block) ;
546
544
let mut env = self . env . write ( ) ;
547
545
@@ -592,6 +590,26 @@ impl Backend {
592
590
}
593
591
}
594
592
593
+ async fn reset_block_number (
594
+ & self ,
595
+ fork_url : String ,
596
+ fork_block_number : u64 ,
597
+ ) -> Result < ( ) , BlockchainError > {
598
+ let mut node_config = self . node_config . write ( ) . await ;
599
+ node_config. fork_choice = Some ( ForkChoice :: Block ( fork_block_number) ) ;
600
+
601
+ let mut env = self . env . read ( ) . clone ( ) ;
602
+ let ( forked_db, client_fork_config) =
603
+ node_config. setup_fork_db_config ( fork_url, & mut env, & self . fees ) . await ?;
604
+
605
+ * self . db . write ( ) . await = Box :: new ( forked_db) ;
606
+ let fork = ClientFork :: new ( client_fork_config, Arc :: clone ( & self . db ) ) ;
607
+ * self . fork . write ( ) = Some ( fork) ;
608
+ * self . env . write ( ) = env;
609
+
610
+ Ok ( ( ) )
611
+ }
612
+
595
613
/// Returns the `TimeManager` responsible for timestamps
596
614
pub fn time ( & self ) -> & TimeManager {
597
615
& self . time
0 commit comments