From 6648e8c995fb8aed3f98770314cc05a713384a30 Mon Sep 17 00:00:00 2001 From: joshieDo Date: Mon, 15 Aug 2022 12:55:56 +0100 Subject: [PATCH] dont collect balance or nonces --- evm/src/fuzz/strategies/state.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/evm/src/fuzz/strategies/state.rs b/evm/src/fuzz/strategies/state.rs index a97193b9d3dd..46029717e961 100644 --- a/evm/src/fuzz/strategies/state.rs +++ b/evm/src/fuzz/strategies/state.rs @@ -60,8 +60,6 @@ pub fn build_initial_state(db: &CacheDB) -> EvmFuzzState { // Insert basic account information state.insert(H256::from(*address).into()); - state.insert(utils::u256_to_h256_be(info.balance).into()); - state.insert(utils::u256_to_h256_be(U256::from(info.nonce)).into()); // Insert storage for (slot, value) in &account.storage { @@ -98,8 +96,6 @@ pub fn collect_state_from_call( for (address, account) in state_changeset { // Insert basic account information state.insert(H256::from(*address).into()); - state.insert(utils::u256_to_h256_be(account.info.balance).into()); - state.insert(utils::u256_to_h256_be(U256::from(account.info.nonce)).into()); // Insert storage for (slot, value) in &account.storage {