Skip to content

Commit

Permalink
Edit doc comments
Browse files Browse the repository at this point in the history
  • Loading branch information
mrLSD committed Jun 3, 2024
1 parent 23c1c4f commit 581370a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
4 changes: 0 additions & 4 deletions core/src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,6 @@ pub fn calc_blob_gas_price(excess_blob_gas: u64) -> u128 {

/// Calculates the [EIP-4844] `data_fee` of the transaction.
///
/// Returns `None` if `Cancun` is not enabled. This is enforced in [`Env::validate_block_env`].
///
/// [EIP-4844]: https://eips.ethereum.org/EIPS/eip-4844
#[inline]
pub fn calc_max_data_fee(max_fee_per_blob_gas: U256, blob_hashes_len: usize) -> U256 {
Expand All @@ -87,8 +85,6 @@ pub fn calc_max_data_fee(max_fee_per_blob_gas: U256, blob_hashes_len: usize) ->

/// Calculates the [EIP-4844] `data_fee` of the transaction.
///
/// Returns `None` if `Cancun` is not enabled. This is enforced in [`Env::validate_block_env`].
///
/// [EIP-4844]: https://eips.ethereum.org/EIPS/eip-4844
#[inline]
pub fn calc_data_fee(blob_gas_price: u128, blob_hashes_len: usize) -> U256 {
Expand Down
1 change: 1 addition & 0 deletions evm-tests/jsontests/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,7 @@ const SKIPPED_CASES: &[&str] = &[
"stTransactionTest/ValueOverflow",
"stTransactionTest/ValueOverflowParis",
// These tests are passing, but they take a lot of time to execute so can going to skip them.
// NOTE: do not remove it to know slowest tests. It's useful for development.
// "stTimeConsuming/static_Call50000_sha256",
// "vmPerformance/loopMul",
// "stTimeConsuming/CALLBlake2f_MaxRounds",
Expand Down

0 comments on commit 581370a

Please sign in to comment.