Skip to content

Commit

Permalink
Bump alloy to 0.7.6 and use correct decode method
Browse files Browse the repository at this point in the history
  • Loading branch information
rory-ocl committed Jul 3, 2024
1 parent cf64c44 commit cc41433
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stylus-proc/src/methods/external.rs
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ pub fn external(_attr: TokenStream, input: TokenStream) -> TokenStream {
#[allow(non_upper_case_globals)]
#constant => {
#deny_value
let args = match <#decode_inputs as SolType>::abi_decode(input, true) {
let args = match <#decode_inputs as SolType>::abi_decode_params(input, true) {
Ok(args) => args,
Err(err) => {
internal::failed_to_decode_arguments(err);
Expand Down

0 comments on commit cc41433

Please sign in to comment.