Remove extraneous clone

This commit is contained in:
Luke Parker 2022-10-21 01:08:15 -05:00 committed by GitHub
parent f6bbc6c89e
commit 21fd56d4d3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -40,7 +40,7 @@ where
let FullDeps { client, pool, deny_unsafe } = deps;
module.merge(System::new(client.clone(), pool, deny_unsafe).into_rpc())?;
module.merge(TransactionPayment::new(client.clone()).into_rpc())?;
module.merge(TransactionPayment::new(client).into_rpc())?;
Ok(module)
}