Skip to content

Commit

Permalink
fix:clippy issue (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
shanithkk authored Dec 4, 2023
1 parent 8b68436 commit 3027482
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion workflow/openwhisk_macro/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ fn impl_openwhisk_client(ast: DeriveInput) -> TokenStream {

let auth_token = property_map["AuthKey"].clone();
let api_host = property_map["ApiHost"].clone();
let insecure = insecure;
let namespace = property_map["Namespace"].clone();

let impl_whisk_client = quote! {
Expand Down
3 changes: 1 addition & 2 deletions workflow/polkadot_macro/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,7 @@ fn impl_polkadot(ast: DeriveInput) -> TokenStream {
operation_methods = impl_batched_payout(polka);
} else if operation.to_lowercase() == "transfer" {
operation_methods = impl_transfer(polka);
} else {
}
}

let structs = impl_structs();
let imports = impl_imports();
Expand Down

0 comments on commit 3027482

Please sign in to comment.