Skip to content

Commit

Permalink
fix: Adjust interface to be consistent with geth validator (#28)
Browse files Browse the repository at this point in the history
* Update reth dependency

* Change reth dependency to fork

* Adjust to new execute_transactions interface

* Switch back to paradigmxyz/reth

* Add parent_beacon_block_root to validation request

* Add blob_gas_used and excess_blob_gas to the execution payload

* Make use of parent_beacon_block_root field

* Reth bump

* Adjust name of rpc method

* Switch back to stable toolchain

* cargo fmt

* Fix tests by running against goerli spec

* Add missing fields to example payload

* Cargo fmt
  • Loading branch information
ckoopmann authored Mar 16, 2024
1 parent a3054d5 commit b655dd5
Show file tree
Hide file tree
Showing 10 changed files with 186 additions and 168 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/check-lint-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,24 +21,24 @@ jobs:
- name: Checkout sources
uses: actions/checkout@v3
- name: Install toolchain
uses: dtolnay/rust-toolchain@nightly
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true

- name: cargo check
run: cargo +nightly check --all --all-features --benches --tests
run: cargo check --all --all-features --benches --tests

- name: cargo fmt
run: cargo +nightly fmt --all --check
run: cargo fmt --all --check

- name: cargo clippy
run: cargo +nightly clippy --all --all-features --benches --tests
run: cargo clippy --all --all-features --benches --tests

- name: cargo test
run: cargo +nightly test
run: cargo test

- name: Set up QEMU
uses: docker/setup-qemu-action@v3
Expand Down
Loading

0 comments on commit b655dd5

Please sign in to comment.