switch to on_disk state service for start cmd

This commit is contained in:
Jane Lusby 2020-06-17 19:27:48 -07:00 committed by Henry de Valence
parent df18ac72c5
commit 7f8a336b69
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ impl StartCmd {
);
let config = app_config().network.clone();
let state = zebra_state::in_memory::init();
let state = zebra_state::on_disk::init(zebra_state::Config::default());
let (peer_set, _address_book) = zebra_network::init(config, node).await;
let retry_peer_set = tower::retry::Retry::new(zebra_network::RetryErrors, peer_set.clone());