Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat: fix Berlin hard fork test and transactions validation #45

Merged
merged 12 commits into from
Jun 11, 2024
6 changes: 3 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ jobs:
- name: Rustfmt
run: cargo fmt --all -- --check
- name: Clippy
run: cargo clippy --workspace --all-targets -- -D clippy::all -D clippy::nursery
run: cargo clippy --workspace --all-targets -- -D clippy::all -D clippy::nursery
- name: Clippy no_std
run: cargo clippy --no-default-features -- -D clippy::all -D clippy::nursery
run: cargo clippy --no-default-features -- -D clippy::all -D clippy::nursery
build:
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
- name: Run Ethereum state tests
run: |
cargo run -r -p evm-jsontests -F enable-slow-tests -- \
state -f -s cancun \
state -f \
ethtests/GeneralStateTests/

- name: Run Ethereum vm tests
Expand Down
4 changes: 2 additions & 2 deletions evm-tests/jsontests/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ const SKIPPED_CASES: &[&str] = &[
"stTransactionTest/ValueOverflow",
"stTransactionTest/ValueOverflowParis",
// It's impossible touch storage by precompiles
// NOTE: this tests related to hard forks: Londod and befor London
// NOTE: this tests related to hard forks: London and before London
"stRevertTest/RevertPrecompiledTouch",
"stRevertTest/RevertPrecompiledTouch_storage",
];
Expand All @@ -299,7 +299,7 @@ const SKIPPED_CASES: &[&str] = &[
"stTransactionTest/ValueOverflow",
"stTransactionTest/ValueOverflowParis",
// It's impossible touch storage by precompiles
// NOTE: this tests related to hard forks: Londod and befor London
// NOTE: this tests related to hard forks: London and before London
"stRevertTest/RevertPrecompiledTouch",
"stRevertTest/RevertPrecompiledTouch_storage",
// These tests are passing, but they take a lot of time to execute so can going to skip them.
Expand Down
Loading