We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3b9eaf commit fa55caaCopy full SHA for fa55caa
crates/cast/src/cmd/call.rs
@@ -266,6 +266,10 @@ impl CallArgs {
266
let input = tx.inner.input.into_input().unwrap_or_default();
267
let tx_kind = tx.inner.to.expect("set by builder");
268
269
+ if let Some(access_list) = tx.inner.access_list {
270
+ executor.env_mut().tx.access_list = access_list.0
271
+ }
272
+
273
let trace = match tx_kind {
274
TxKind::Create => {
275
let deploy_result = executor.deploy(from, input, value, None);
0 commit comments