Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
b12afd8
Justified test clones
SDartayet Oct 3, 2025
20c0adc
Removed unnecessary blobs clone, unused functions
SDartayet Oct 3, 2025
f192c94
Removed clone when returning tx to field
SDartayet Oct 3, 2025
85aa0a7
fixed issues with previous commit, removed clone when parsing
SDartayet Oct 3, 2025
29daf3f
Removed clone in from implementations
SDartayet Oct 3, 2025
79d6b3b
Fix compilation errors
SDartayet Oct 6, 2025
49902dc
Removed clone of blob hashes
SDartayet Oct 6, 2025
13dcb52
Fixing errors
SDartayet Oct 6, 2025
b98469a
Fixing errors and lints
SDartayet Oct 6, 2025
cca95d8
Update blobs_bundle.rs
SDartayet Oct 6, 2025
417a798
Improving readability in tests
SDartayet Oct 6, 2025
bcaa21c
Fixing errors and lints
SDartayet Oct 6, 2025
0c3af9b
Merge branch 'main' into remove-clones-from-common
SDartayet Oct 6, 2025
fffc5c9
Changed back tx types, derived copy for TxKind
SDartayet Oct 6, 2025
3eb00f4
Merge branch 'main' into remove-clones-from-common
SDartayet Oct 6, 2025
f3a04b8
Fixed runner so tests wouldn't fail after blob hashes refactor
SDartayet Oct 6, 2025
7b0b9b3
Fixing lnts
SDartayet Oct 6, 2025
6a82ac7
Fix typo
SDartayet Oct 6, 2025
c12a7ac
Addressing review comments
SDartayet Oct 6, 2025
e947343
Fixing lints
SDartayet Oct 6, 2025
5e2084e
Fixing review comments
SDartayet Oct 6, 2025
7c8e055
Fixing lints
SDartayet Oct 6, 2025
52f4830
Merge branch 'main' into remove-clones-from-common
SDartayet Oct 7, 2025
ff04834
Merge branch 'main' into remove-clones-from-common
SDartayet Oct 8, 2025
217f4b9
Undoing previous change
SDartayet Oct 8, 2025
f65dbbd
Fixing bug
SDartayet Oct 14, 2025
872fbd4
Fixing issue with previous commit
SDartayet Oct 14, 2025
246171f
Merge branch 'main' into remove-clones-from-common
SDartayet Oct 14, 2025
5046daa
Fixing issue with previous commit
SDartayet Oct 14, 2025
4586255
Merge branch 'main' into remove-clones-from-common
SDartayet Oct 15, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixing errors and lints
  • Loading branch information
SDartayet committed Oct 6, 2025
commit bcaa21c7cc875e2e5070cdd1002c6882ed5866f4
2 changes: 1 addition & 1 deletion crates/vm/levm/src/hooks/default_hook.rs
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ pub fn validate_sender_balance(vm: &mut VM<'_>, sender_balance: U256) -> Result<
// blob gas cost = max fee per blob gas * blob gas used
// https://eips.ethereum.org/EIPS/eip-4844
let max_blob_gas_cost = get_max_blob_gas_price(
&vm.tx.blob_versioned_hashes().unwrap_or(&vec![]),
vm.tx.blob_versioned_hashes().unwrap_or(&vec![]),
vm.env.tx_max_fee_per_blob_gas,
)?;

Expand Down
2 changes: 1 addition & 1 deletion tooling/ef_tests/state/runner/levm_runner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ pub fn prepare_vm_for_tx<'a>(
let tx = match authorization_list {
Some(list) => Transaction::EIP7702Transaction(EIP7702Transaction {
to: match test_tx.to {
TxKind::Call(_) => test_tx.to,
TxKind::Call(_) => test_tx.to.clone(),
TxKind::Create => return Err(EFTestRunnerError::EIP7702ShouldNotBeCreateType),
},
value: test_tx.value,
Expand Down
Loading