Skip to content

Commit

Permalink
Update ScriptArgs::preprocess() visibility to pub (#8524)
Browse files Browse the repository at this point in the history
update preprocess visibility
  • Loading branch information
0xKitsune authored Jul 25, 2024
1 parent 4845380 commit 9444c62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/script/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ pub struct ScriptArgs {
}

impl ScriptArgs {
async fn preprocess(self) -> Result<PreprocessedState> {
pub async fn preprocess(self) -> Result<PreprocessedState> {
let script_wallets =
ScriptWallets::new(self.wallets.get_multi_wallet().await?, self.evm_opts.sender);

Expand Down

0 comments on commit 9444c62

Please sign in to comment.