From 9444c6217a258cb4fd6ac38597ea282d6642ec7c Mon Sep 17 00:00:00 2001 From: 0xKitsune <77890308+0xKitsune@users.noreply.github.com> Date: Thu, 25 Jul 2024 13:27:30 -0400 Subject: [PATCH] Update `ScriptArgs::preprocess()` visibility to `pub` (#8524) update preprocess visibility --- crates/script/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/script/src/lib.rs b/crates/script/src/lib.rs index af7000672b3f..b6370b43206c 100644 --- a/crates/script/src/lib.rs +++ b/crates/script/src/lib.rs @@ -195,7 +195,7 @@ pub struct ScriptArgs { } impl ScriptArgs { - async fn preprocess(self) -> Result { + pub async fn preprocess(self) -> Result { let script_wallets = ScriptWallets::new(self.wallets.get_multi_wallet().await?, self.evm_opts.sender);