Skip to content

Commit 61a3713

Browse files
authored
Merge pull request #88 from staratlasmeta/stegaBOB/fix/rename-arg
rename proc var
2 parents 0b21f27 + cafcbde commit 61a3713

File tree

1 file changed

+2
-2
lines changed
  • framework/star_frame_proc/src/account_set/struct_impl

1 file changed

+2
-2
lines changed

framework/star_frame_proc/src/account_set/struct_impl/decode.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,8 +166,8 @@ pub(super) fn decodes(
166166
match &field_ty {
167167
DecodeFieldTy::Type(field_type) => quote! {
168168
{
169-
let __arg = #decode_args;
170-
<#field_type as #account_set_decode<#decode_lifetime, #info_lifetime, _>>::decode_accounts(accounts, __arg, syscalls)?
169+
let __decode_arg = #decode_args;
170+
<#field_type as #account_set_decode<#decode_lifetime, #info_lifetime, _>>::decode_accounts(accounts, __decode_arg, syscalls)?
171171
}
172172
},
173173
DecodeFieldTy::Default(default) => quote!(#default)

0 commit comments

Comments
 (0)