Skip to content

Commit

Permalink
Remove todo regarding borrowing storage key arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
ascjones committed Nov 3, 2021
1 parent 63bb5ea commit 84fe1a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion codegen/src/api/storage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ fn generate_storage_entry_fns(

let key_args = fields
.iter()
.map(|(field_name, field_type)| quote!( #field_name: #field_type )); // todo: [AJ] borrow non build-inf types?
.map(|(field_name, field_type)| quote!( #field_name: #field_type ));
let client_fns = quote! {
pub async fn #fn_name(
&self,
Expand Down

0 comments on commit 84fe1a0

Please sign in to comment.