Add a case ignore flag (#114)

* Added a resolver tied to a specific block

* Increase the number of private keys

* Increase kitchensink wait time to 60 seconds

* Add a case ignore flag
This commit is contained in:
Omar
2025-08-04 19:40:53 +03:00
committed by GitHub
parent ff993d44a5
commit 9980926d40
3 changed files with 32 additions and 0 deletions
+6
View File
@@ -5,6 +5,7 @@ use std::marker::PhantomData;
use std::path::PathBuf;
use alloy::eips::BlockNumberOrTag;
use alloy::hex;
use alloy::json_abi::JsonAbi;
use alloy::network::{Ethereum, TransactionBuilder};
use alloy::primitives::{BlockNumber, U256};
@@ -242,6 +243,11 @@ where
) {
let value = U256::from_be_slice(output_word);
self.variables.insert(variable_name.clone(), value);
tracing::info!(
variable_name,
variable_value = hex::encode(value.to_be_bytes::<32>()),
"Assigned variable"
);
}
Ok(())