Fix quote tab

This commit is contained in:
Armani Ferrante 2021-01-23 19:37:57 -08:00
parent 0ec73721ad
commit 7fc7911893
No known key found for this signature in database
GPG Key ID: D597A80BCF8E12B7
1 changed files with 3 additions and 3 deletions

View File

@ -74,9 +74,9 @@ pub fn generate_dispatch(program: &Program) -> proc_macro2::TokenStream {
};
quote! {
__private::instruction::#variant_arm => {
__private::#rpc_name(program_id, accounts, #(#rpc_arg_names),*)
}
}
__private::#rpc_name(program_id, accounts, #(#rpc_arg_names),*)
}
}
})
.collect(),
};