chore(rpc): remove redundant trait bounds in eth api (#12105)

This commit is contained in:
Emilia Hane
2024-10-27 16:30:02 +08:00
committed by GitHub
parent e158369a68
commit 768404c59e
3 changed files with 4 additions and 8 deletions

View File

@@ -231,7 +231,7 @@ pub trait EthTransactions: LoadTransaction {
include_pending: bool,
) -> impl Future<Output = Result<Option<RpcTransaction<Self::NetworkTypes>>, Self::Error>> + Send
where
Self: LoadBlock + LoadState + FullEthApiTypes,
Self: LoadBlock + LoadState,
{
async move {
// Check the pool first