diff --git a/forc-plugins/forc-client/src/op/call.rs b/forc-plugins/forc-client/src/op/call.rs index 1925b6b9029..2fb093301df 100644 --- a/forc-plugins/forc-client/src/op/call.rs +++ b/forc-plugins/forc-client/src/op/call.rs @@ -45,7 +45,7 @@ pub async fn call(cmd: cmd::Call) -> anyhow::Result { let wallet = get_wallet(caller, provider).await?; if let Some(abi) = abi { - // If ABI is provided, ensure funtion signature is just the selector + // If ABI is provided, ensure function signature is just the selector let cmd::call::FuncType::Selector(selector) = function else { bail!("Function must be a selector"); };