mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
chore: remove TransactionSignedNoHash (#13120)
This commit is contained in:
@ -22,7 +22,7 @@ use reth_db::{
|
||||
};
|
||||
use reth_fs_util as fs;
|
||||
use reth_primitives::{
|
||||
Account, Log, LogData, Receipt, StorageEntry, Transaction, TransactionSignedNoHash, TxType,
|
||||
Account, Log, LogData, Receipt, StorageEntry, Transaction, TransactionSigned, TxType,
|
||||
};
|
||||
use reth_prune_types::{PruneCheckpoint, PruneMode};
|
||||
use reth_stages_types::{
|
||||
@ -111,7 +111,7 @@ compact_types!(
|
||||
StoredBlockBodyIndices,
|
||||
StoredBlockWithdrawals,
|
||||
// Manual implementations
|
||||
TransactionSignedNoHash,
|
||||
TransactionSigned,
|
||||
// Bytecode, // todo revm arbitrary
|
||||
StorageEntry,
|
||||
// MerkleCheckpoint, // todo storedsubnode -> branchnodecompact arbitrary
|
||||
|
||||
@ -11,7 +11,7 @@ use proptest_arbitrary_interop::arb;
|
||||
use reth_db::tables;
|
||||
use reth_db_api::table::{DupSort, Table, TableRow};
|
||||
use reth_fs_util as fs;
|
||||
use reth_primitives::TransactionSignedNoHash;
|
||||
use reth_primitives::TransactionSigned;
|
||||
use std::collections::HashSet;
|
||||
use tracing::error;
|
||||
|
||||
@ -74,7 +74,7 @@ pub fn generate_vectors(mut tables: Vec<String>) -> Result<()> {
|
||||
(BlockBodyIndices, PER_TABLE, TABLE),
|
||||
(BlockOmmers<Header>, 100, TABLE),
|
||||
(TransactionHashNumbers, PER_TABLE, TABLE),
|
||||
(Transactions<TransactionSignedNoHash>, 100, TABLE),
|
||||
(Transactions<TransactionSigned>, 100, TABLE),
|
||||
(PlainStorageState, PER_TABLE, DUPSORT),
|
||||
(PlainAccountState, PER_TABLE, TABLE)
|
||||
]);
|
||||
|
||||
Reference in New Issue
Block a user