Merge branch 'develop' into tendermint

This commit is contained in:
Luke Parker 2022-10-21 03:17:21 -04:00
commit fcb9148fc9
No known key found for this signature in database
GPG key ID: F9F1386DB1E119B6

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)
}