chore: rename transaction_by_id_no_hash fn (#12783)

This commit is contained in:
Matthias Seitz
2024-11-22 16:35:50 +01:00
committed by GitHub
parent 7b156f058c
commit 362e2ed0af
11 changed files with 22 additions and 22 deletions

View File

@ -425,11 +425,11 @@ impl<N: ProviderNodeTypes> TransactionsProvider for BlockchainProvider<N> {
self.database.transaction_by_id(id)
}
fn transaction_by_id_no_hash(
fn transaction_by_id_unhashed(
&self,
id: TxNumber,
) -> ProviderResult<Option<TransactionSignedNoHash>> {
self.database.transaction_by_id_no_hash(id)
self.database.transaction_by_id_unhashed(id)
}
fn transaction_by_hash(&self, hash: TxHash) -> ProviderResult<Option<TransactionSigned>> {