Revert "Create bank snapshots (#3671)" (#4243)

This reverts commit abf2b300da.
This commit is contained in:
Rob Walker
2019-05-09 19:27:27 -07:00
committed by GitHub
parent abf2b300da
commit 81fa69d347
26 changed files with 142 additions and 1130 deletions

View File

@@ -148,13 +148,7 @@ fn main() {
.validator(port_range_validator)
.help("Range to use for dynamically assigned ports"),
)
.arg(
clap::Arg::with_name("use_snapshot")
.long("use-snapshot")
.takes_value(false)
.help("Load / Store bank snapshots"),
)
.get_matches();
.get_matches();
let mut fullnode_config = FullnodeConfig::default();
let keypair = if let Some(identity) = matches.value_of("identity") {
@@ -184,8 +178,6 @@ fn main() {
fullnode_config.sigverify_disabled = matches.is_present("no_sigverify");
fullnode_config.use_snapshot = matches.is_present("use_snapshot");
fullnode_config.voting_disabled = matches.is_present("no_voting");
if matches.is_present("enable_rpc_exit") {