chore: remove TransactionSignedNoHash (#13120)

This commit is contained in:
Arsenii Kulikov
2024-12-04 11:59:01 +04:00
committed by GitHub
parent 4e73bb04c2
commit 5c07669ef6
12 changed files with 96 additions and 246 deletions

View File

@ -31,7 +31,7 @@ use reth_db_api::{
},
table::{Decode, DupSort, Encode, Table},
};
use reth_primitives::{Receipt, StorageEntry, TransactionSignedNoHash};
use reth_primitives::{Receipt, StorageEntry, TransactionSigned};
use reth_primitives_traits::{Account, Bytecode};
use reth_prune_types::{PruneCheckpoint, PruneSegment};
use reth_stages_types::StageCheckpoint;
@ -348,7 +348,7 @@ tables! {
}
/// Canonical only Stores the transaction body for canonical transactions.
table Transactions<T = TransactionSignedNoHash> {
table Transactions<T = TransactionSigned> {
type Key = TxNumber;
type Value = T;
}