Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
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
4 changes: 2 additions & 2 deletions .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
- name: Download builder playground
uses: flashbots/[email protected]
with:
builder-playground: v0.1.3-reth-1.4.8
builder-playground: v0.3.1

# https://github.com/swatinem/rust-cache
- name: Run Swatinem/rust-cache@v2
Expand All @@ -111,7 +111,7 @@ jobs:
run: cargo build --features="${{ matrix.features }}"

- name: Run the playground
run: builder-playground &
run: builder-playground start l1 --use-native-reth &

- name: Run integration tests with flags
run: cargo test --features="${{ matrix.features }}" --package rbuilder --lib -- integration --test-threads=1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@

chain = "$HOME/.playground/devnet/genesis.json"
reth_datadir = "$HOME/.playground/devnet/data_reth"
chain = "$HOME/.local/state/builder-playground/devnet/genesis.json"
reth_datadir = "$HOME/.local/state/builder-playground/devnet/volume-el-data"
relay_secret_key = "5eae315483f028b5cdd5d1090ff0c7618b18737ea9bf3c35047189db22835c48"
el_node_ipc_path = "$HOME/.playground/devnet/reth.ipc"
el_node_ipc_path = "$HOME/.local/state/builder-playground/devnet/volume-el-data/reth.ipc"
live_builders = ["mgp-ordering"]
enabled_relays = ["playground"]
log_level = "info,rbuilder=debug"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@

chain = "$HOME/.playground/devnet/genesis.json"
reth_datadir = "$HOME/.playground/devnet/data_reth"
chain = "$HOME/.local/state/builder-playground/devnet/genesis.json"
reth_datadir = "$HOME/.local/state/builder-playground/devnet/volume-el-data"
relay_secret_key = "5eae315483f028b5cdd5d1090ff0c7618b18737ea9bf3c35047189db22835c48"
el_node_ipc_path = "$HOME/.playground/devnet/reth.ipc"
el_node_ipc_path = "$HOME/.local/state/builder-playground/devnet/volume-el-data/reth.ipc"
live_builders = ["mgp-ordering"]
enabled_relays = ["playground"]
log_level = "info,rbuilder=debug"
coinbase_secret_key = "ac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80"
blocklist_file_path = "./src/integration/test_data/blocklist.json"
root_hash_use_sparse_trie = true
root_hash_compare_sparse_trie = false
root_hash_compare_sparse_trie = false
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Minor: The file is now missing a trailing newline. This is a common best practice for text files to ensure proper POSIX compliance and avoid potential issues with tools that expect newlines at EOF.

Suggested change
root_hash_compare_sparse_trie = false
root_hash_compare_sparse_trie = false

Loading