ebf2fec5d0
## Proposed Changes * Bump Go from 1.17 to 1.20. The latest Geth release v1.11.0 requires 1.18 minimum. * Prevent a cache miss during payload building by using the right fee recipient. This prevents Geth v1.11.0 from building a block with 0 transactions. The payload building mechanism is overhauled in the new Geth to improve the payload every 2s, and the tests were failing because we were falling back on a `getPayload` call with no lookahead due to `get_payload_id` cache miss caused by the mismatched fee recipient. Alternatively we could hack the tests to send `proposer_preparation_data`, but I think the static fee recipient is simpler for now. * Add support for optionally enabling Lighthouse logs in the integration tests. Enable using `cargo run --release --features logging/test_logger`. This was very useful for debugging.
25 lines
859 B
TOML
25 lines
859 B
TOML
[package]
|
|
name = "execution_engine_integration"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
tempfile = "3.1.0"
|
|
serde_json = "1.0.58"
|
|
task_executor = { path = "../../common/task_executor" }
|
|
tokio = { version = "1.14.0", features = ["rt-multi-thread", "macros"] }
|
|
futures = "0.3.7"
|
|
exit-future = "0.2.0"
|
|
environment = { path = "../../lighthouse/environment" }
|
|
execution_layer = { path = "../../beacon_node/execution_layer" }
|
|
sensitive_url = { path = "../../common/sensitive_url" }
|
|
types = { path = "../../consensus/types" }
|
|
unused_port = { path = "../../common/unused_port" }
|
|
ethers-core = "1.0.2"
|
|
ethers-providers = "1.0.2"
|
|
deposit_contract = { path = "../../common/deposit_contract" }
|
|
reqwest = { version = "0.11.0", features = ["json"] }
|
|
hex = "0.4.2"
|
|
fork_choice = { path = "../../consensus/fork_choice" }
|
|
logging = { path = "../../common/logging" }
|