feat(provider): add TransactionsProvider and WithdrawalsProvider (#1431)

This commit is contained in:
Roman Krasiuk
2023-02-17 17:26:47 +02:00
committed by GitHub
parent bacb3c59b2
commit 54b6a4ae94
11 changed files with 285 additions and 117 deletions

View File

@ -191,8 +191,8 @@ where
self.inner.signers.iter().flat_map(|s| s.accounts()).collect()
}
async fn transaction_by_hash(&self, _hash: H256) -> Result<Option<TransactionSigned>> {
todo!()
async fn transaction_by_hash(&self, hash: H256) -> Result<Option<TransactionSigned>> {
self.client().transaction_by_hash(hash)
}
}