0a6a8ea3b0
## Issue Addressed NA ## Proposed Changes This PR extends #3018 to address my review comments there and add automated integration tests with Geth (and other implementations, in the future). I've also de-duplicated the "unused port" logic by creating an `common/unused_port` crate. ## Additional Info I'm not sure if we want to merge this PR, or update #3018 and merge that. I don't mind, I'm primarily opening this PR to make sure CI works. Co-authored-by: Mark Mackey <mark@sigmaprime.io>
14 lines
469 B
TOML
14 lines
469 B
TOML
[package]
|
|
name = "eth1_test_rig"
|
|
version = "0.2.0"
|
|
authors = ["Paul Hauner <paul@paulhauner.com>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
tokio = { version = "1.14.0", features = ["time"] }
|
|
web3 = { version = "0.17.0", default-features = false, features = ["http-tls", "signing", "ws-tls-tokio"] }
|
|
types = { path = "../../consensus/types"}
|
|
serde_json = "1.0.58"
|
|
deposit_contract = { path = "../../common/deposit_contract"}
|
|
unused_port = { path = "../../common/unused_port" }
|