diff --git a/Cargo.lock b/Cargo.lock index c919b772..798bc85d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -593,7 +593,7 @@ dependencies = [ [[package]] name = "dolos" -version = "0.5.0" +version = "0.6.0" dependencies = [ "async-stream", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index f76e3615..b8795194 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "dolos" -description = "Cardano Dolos" -version = "0.5.0" +description = "A Cardano data-node built in Rust" +version = "0.6.0" edition = "2021" repository = "https://github.com/txpipe/dolos" homepage = "https://github.com/txpipe/dolos" diff --git a/examples/sync-mainnet/dolos.toml b/examples/sync-mainnet/dolos.toml index ee5eb1c4..728cc438 100644 --- a/examples/sync-mainnet/dolos.toml +++ b/examples/sync-mainnet/dolos.toml @@ -15,4 +15,3 @@ magic = 0 [byron] path = "./byron.json" -hash = "xxx" diff --git a/examples/sync-preprod/dolos.toml b/examples/sync-preprod/dolos.toml index d86edd63..6ae932ba 100644 --- a/examples/sync-preprod/dolos.toml +++ b/examples/sync-preprod/dolos.toml @@ -15,4 +15,3 @@ magic = 0 [byron] path = "./byron.json" -hash = "xxx" diff --git a/examples/sync-preview/dolos.toml b/examples/sync-preview/dolos.toml index 0c41149e..f28d77cf 100644 --- a/examples/sync-preview/dolos.toml +++ b/examples/sync-preview/dolos.toml @@ -15,7 +15,6 @@ magic = 0 [byron] path = "./byron.json" -hash = "xxx" [logging] max_level = "debug" diff --git a/src/bin/dolos/main.rs b/src/bin/dolos/main.rs index 89739c76..1da25113 100644 --- a/src/bin/dolos/main.rs +++ b/src/bin/dolos/main.rs @@ -1,9 +1,8 @@ -use std::{path::PathBuf, time::Duration}; - use clap::{Parser, Subcommand}; use miette::{Context, IntoDiagnostic, Result}; use serde::Deserialize; use serde_with::{serde_as, DisplayFromStr}; +use std::path::PathBuf; mod common; mod daemon;