fix clippy warnings in node template (#14390)

This commit is contained in:
Marijn Schouten
2023-06-15 22:17:38 +02:00
committed by GitHub
parent 6cd2c8b395
commit 5426b17f9c
4 changed files with 10 additions and 11 deletions
+1 -1
View File
@@ -45,7 +45,7 @@ where
let mut module = RpcModule::new(());
let FullDeps { client, pool, deny_unsafe } = deps;
module.merge(System::new(client.clone(), pool.clone(), deny_unsafe).into_rpc())?;
module.merge(System::new(client.clone(), pool, deny_unsafe).into_rpc())?;
module.merge(TransactionPayment::new(client).into_rpc())?;
// Extend this RPC with a custom API by using the following syntax.