Skip to content

Commit 27639fa

Browse files
committed
After review changes
1 parent ba25873 commit 27639fa

3 files changed

Lines changed: 3 additions & 4 deletions

File tree

evm-tests/src/assertions.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
use aurora_evm::{ExitError, ExitReason};
2-
// use aurora_evm::{ExitError, ExitReason};
31
use crate::config::TestConfig;
42
use crate::types::Spec;
53
use crate::types::{InvalidTxReason, PostState};
4+
use aurora_evm::{ExitError, ExitReason};
65

76
/// Assert vicinity validation to ensure that test expected validation error
87
#[allow(clippy::cognitive_complexity, clippy::too_many_lines)]

evm-tests/src/precompiles.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ fn get_exit_error(exit_error: aurora_engine_precompiles::ExitError) -> ExitError
225225

226226
/// Dumps precompile input and output data to a JSON file for test case generation.
227227
///
228-
/// It can be used for debbugging and creating new test cases for precompiles.
228+
/// It can be used for debugging and creating new test cases for precompiles.
229229
#[cfg(feature = "dump-state")]
230230
#[allow(dead_code)]
231231
fn dump_precompile_state(

evm-tests/src/types/eip_7623.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ pub const STANDARD_TOKEN_COST: usize = 4;
66
pub const NON_ZERO_BYTE_DATA_COST: usize = 16;
77
/// The multiplier for a non zero byte in calldata adjusted by [EIP-2028](https://eips.ethereum.org/EIPS/eip-2028).
88
pub const NON_ZERO_BYTE_MULTIPLIER: usize = NON_ZERO_BYTE_DATA_COST / STANDARD_TOKEN_COST;
9-
// The cost floor per token
9+
/// The cost floor per token
1010
pub const TOTAL_COST_FLOOR_PER_TOKEN: u64 = 10;
1111

1212
/// Retrieve the total number of tokens in calldata.

0 commit comments

Comments
 (0)