Skip to content

Commit

Permalink
fix macro build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
nuke-web3 committed Nov 14, 2021
1 parent 82f0b83 commit b76e3ee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions derive/src/to_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,12 @@ pub fn generate_client_module(

/// The Client.
#[derive(Clone)]
pub struct Client#generics {
pub struct Client #generics {
inner: TypedClient,
#(#markers_decl),*
}

impl#generics Client#generics
impl #generics Client #generics
where
#(#where_clause),*
{
Expand All @@ -78,7 +78,7 @@ pub fn generate_client_module(
#(#client_methods)*
}

impl#generics From<RpcChannel> for Client#generics
impl #generics From<RpcChannel> for Client #generics
where
#(#where_clause2),*
{
Expand Down

0 comments on commit b76e3ee

Please sign in to comment.