1031f79aca
## Issue Addressed
NA
## Proposed Changes
This PR adds some more fancy macro magic to make it easier to add a new built-in (aka "baked-in") testnet config to the `lighthouse` binary.
Previously, a user needed to modify several files and repeat themselves several times. Now, they only need to add a single definition in the `eth2_config` crate. No repetition 🎉
12 lines
232 B
TOML
12 lines
232 B
TOML
[package]
|
|
name = "eth2_config"
|
|
version = "0.2.0"
|
|
authors = ["Paul Hauner <paul@paulhauner.com>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
serde = "1.0.116"
|
|
serde_derive = "1.0.116"
|
|
types = { path = "../../consensus/types" }
|
|
paste = "1.0.5"
|