This commit is contained in:
Daniel Lubarov 2022-08-01 11:20:56 -07:00
parent b737aeaf03
commit 94c9b1b09c
4 changed files with 2 additions and 5 deletions

View File

@ -2,7 +2,7 @@ mod curve_ops;
mod ecrecover; mod ecrecover;
mod exp; mod exp;
mod rlp; mod rlp;
mod type_0_txn; mod transaction_parsing;
use std::str::FromStr; use std::str::FromStr;

View File

@ -5,7 +5,6 @@ use ethereum_types::U256;
use crate::cpu::kernel::aggregator::KERNEL; use crate::cpu::kernel::aggregator::KERNEL;
use crate::cpu::kernel::interpreter::Interpreter; use crate::cpu::kernel::interpreter::Interpreter;
use crate::memory::segments::Segment;
#[test] #[test]
fn test_decode_rlp_string_len_short() -> Result<()> { fn test_decode_rlp_string_len_short() -> Result<()> {

View File

@ -0,0 +1 @@
mod parse_type_0_txn;

View File

@ -1,5 +1,3 @@
use std::str::FromStr;
use anyhow::Result; use anyhow::Result;
use ethereum_types::U256; use ethereum_types::U256;
use hex_literal::hex; use hex_literal::hex;
@ -7,7 +5,6 @@ use NormalizedTxnField::*;
use crate::cpu::kernel::aggregator::KERNEL; use crate::cpu::kernel::aggregator::KERNEL;
use crate::cpu::kernel::interpreter::Interpreter; use crate::cpu::kernel::interpreter::Interpreter;
use crate::cpu::kernel::tests::rlp::set_rlp_memory;
use crate::cpu::kernel::txn_fields::NormalizedTxnField; use crate::cpu::kernel::txn_fields::NormalizedTxnField;
#[test] #[test]