e32868458f
## Issue Addressed Closes https://github.com/sigp/lighthouse/issues/3189. ## Proposed Changes - Always supply the justified block hash as the `safe_block_hash` when calling `forkchoiceUpdated` on the execution engine. - Refactor the `get_payload` routine to use the new `ForkchoiceUpdateParameters` struct rather than just the `finalized_block_hash`. I think this is a nice simplification and that the old way of computing the `finalized_block_hash` was unnecessary, but if anyone sees reason to keep that approach LMK.
24 lines
997 B
TOML
24 lines
997 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 = { git = "https://github.com/gakonst/ethers-rs", rev = "02ad93a1cfb7b62eb051c77c61dc4c0218428e4a" }
|
|
ethers-providers = { git = "https://github.com/gakonst/ethers-rs", rev = "02ad93a1cfb7b62eb051c77c61dc4c0218428e4a" }
|
|
deposit_contract = { path = "../../common/deposit_contract" }
|
|
reqwest = { version = "0.11.0", features = ["json"] }
|
|
hex = "0.4.2"
|
|
fork_choice = { path = "../../consensus/fork_choice" }
|