-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.rs
43 lines (42 loc) · 1.75 KB
/
build.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// Extracts zipped genesis state on first run.
// Ref: https://github.com/sigp/lighthouse/blob/1031f79aca762e692ade20df52ddd038fedcb999/common/eth2_network_config/build.rs#L20
fn main() {
// NOTE: No longer need to download genesis state since currently Ray is doing checkpoint sync.
// if let Err(e) = uncompress_genesis_state() {
// panic!("Failed to uncompress genesis state: {}", e);
// }
}
// Uncompress the genesis state archive into `network_config` folder.
// The `genesis.ssz.zip` file is copied from:
// https://github.com/sigp/lighthouse/blob/stable/common/eth2_network_config/built_in_network_configs/prater/genesis.ssz.zip
// -> rev: 87825b2
// fn uncompress_genesis_state() -> Result<(), String> {
// let network_config_dir = env!("CARGO_MANIFEST_DIR")
// .parse::<PathBuf>()
// .map_err(|e| format!("Failed to parse manifest dir: {}", e))?
// .join("network_config");
//
// let path_to_genesis_ssz = network_config_dir.join("genesis.ssz");
//
// if path_to_genesis_ssz.exists() {
// return Ok(());
// }
//
// let mut archive = ZipArchive::new(
// File::open(network_config_dir.join("genesis.ssz.zip"))
// .map_err(|e| format!("should open genesis.ssz.zip: {}", e))?,
// )
// .map_err(|e| format!("Failed to read zip file: {}", e))?;
//
// let mut genesis_ssz_file = archive
// .by_name("genesis.ssz")
// .map_err(|e| format!("should retrieve genesis.ssz: {}", e))?;
//
// let mut dest = File::create(path_to_genesis_ssz)
// .map_err(|e| format!("Failed to create genesis.ssz: {}", e))?;
//
// std::io::copy(&mut genesis_ssz_file, &mut dest)
// .map_err(|e| format!("Failed to copy genesis.ssz: {}", e))?;
//
// Ok(())
// }