Add prater testnet config (#2260)

## Issue Addressed

Resolves #2258 

## Proposed Changes

Add support for prater testnet.
This commit is contained in:
Pawan Dhananjay
2021-03-17 00:47:06 +00:00
parent 0c52a2ac1d
commit 87825b2bd2
9 changed files with 171 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
//! Extracts zipped genesis states on first run.
use eth2_config::{
altona, mainnet, medalla, pyrmont, spadina, toledo, Eth2NetArchiveAndDirectory,
altona, mainnet, medalla, prater, pyrmont, spadina, toledo, Eth2NetArchiveAndDirectory,
GENESIS_FILE_NAME,
};
use std::fs::File;
@@ -14,6 +14,7 @@ const ETH2_NET_DIRS: &[Eth2NetArchiveAndDirectory<'static>] = &[
mainnet::ETH2_NET_DIR,
pyrmont::ETH2_NET_DIR,
toledo::ETH2_NET_DIR,
prater::ETH2_NET_DIR,
];
fn main() {