Skip to content

Commit 4974a08

Browse files
nbaztecgrandizzy
andauthored
fix(anvil): reset cache path during anvil_reset without fork url (#9729)
* reset cache path during anvil_reset without fork url * refactor * comment typo * fix base fee update * fix test on windows, fmt * abstract block number reset logic * fix test deadlock * update foundry-fork-db * clippy --------- Co-authored-by: grandizzy <[email protected]> Co-authored-by: grandizzy <[email protected]>
1 parent 1bfde08 commit 4974a08

File tree

3 files changed

+67
-13
lines changed

3 files changed

+67
-13
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ foundry-linking = { path = "crates/linking" }
188188
# solc & compilation utilities
189189
foundry-block-explorers = { version = "0.11.0", default-features = false }
190190
foundry-compilers = { version = "0.13.3", default-features = false }
191-
foundry-fork-db = "0.11.0"
191+
foundry-fork-db = "0.11.1"
192192
solang-parser = "=0.3.3"
193193
solar-parse = { version = "=0.1.1", default-features = false }
194194

crates/anvil/src/eth/backend/mem/mod.rs

+30-12
Original file line numberDiff line numberDiff line change
@@ -529,19 +529,17 @@ impl Backend {
529529
// update all settings related to the forked block
530530
{
531531
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?;
544533
} 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+
545543
let gas_limit = self.node_config.read().await.fork_gas_limit(&fork_block);
546544
let mut env = self.env.write();
547545

@@ -592,6 +590,26 @@ impl Backend {
592590
}
593591
}
594592

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+
595613
/// Returns the `TimeManager` responsible for timestamps
596614
pub fn time(&self) -> &TimeManager {
597615
&self.time

crates/anvil/tests/it/fork.rs

+36
Original file line numberDiff line numberDiff line change
@@ -1473,6 +1473,42 @@ async fn test_reset_dev_account_nonce() {
14731473
assert!(receipt.status());
14741474
}
14751475

1476+
#[tokio::test(flavor = "multi_thread")]
1477+
async fn test_reset_updates_cache_path_when_rpc_url_not_provided() {
1478+
let config: NodeConfig = fork_config();
1479+
1480+
let (mut api, _handle) = spawn(config).await;
1481+
let info = api.anvil_node_info().await.unwrap();
1482+
let number = info.fork_config.fork_block_number.unwrap();
1483+
assert_eq!(number, BLOCK_NUMBER);
1484+
1485+
async fn get_block_from_cache_path(api: &mut EthApi) -> u64 {
1486+
let db = api.backend.get_db().read().await;
1487+
let cache_path = db.maybe_inner().unwrap().cache().cache_path().unwrap();
1488+
cache_path
1489+
.parent()
1490+
.expect("must have filename")
1491+
.file_name()
1492+
.expect("must have block number as dir name")
1493+
.to_str()
1494+
.expect("must be valid string")
1495+
.parse::<u64>()
1496+
.expect("must be valid number")
1497+
}
1498+
1499+
assert_eq!(BLOCK_NUMBER, get_block_from_cache_path(&mut api).await);
1500+
1501+
// Reset to older block without specifying a new rpc url
1502+
api.anvil_reset(Some(Forking {
1503+
json_rpc_url: None,
1504+
block_number: Some(BLOCK_NUMBER - 1_000_000),
1505+
}))
1506+
.await
1507+
.unwrap();
1508+
1509+
assert_eq!(BLOCK_NUMBER - 1_000_000, get_block_from_cache_path(&mut api).await);
1510+
}
1511+
14761512
#[tokio::test(flavor = "multi_thread")]
14771513
async fn test_fork_get_account() {
14781514
let (_api, handle) = spawn(fork_config()).await;

0 commit comments

Comments
 (0)