Skip to content

Commit

Permalink
fix missing commit
Browse files Browse the repository at this point in the history
  • Loading branch information
scarmuega committed Apr 16, 2024
1 parent 78f9f4e commit 6db22a5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/bin/dolos/main.rs
Expand Up @@ -72,6 +72,7 @@ pub struct Config {
pub retries: Option<gasket::retries::Policy>,
pub byron: GenesisFileRef,
pub shelley: GenesisFileRef,
pub alonzo: GenesisFileRef,
#[serde(default)]
pub logging: LoggingConfig,
}
Expand Down Expand Up @@ -109,7 +110,6 @@ fn main() -> Result<()> {
Command::Sync(x) => sync::run(&config, &x)?,
Command::Data(x) => data::run(&config, &x)?,
Command::Eval(x) => eval::run(&config, &x)?,

#[cfg(feature = "mithril")]
Command::Bootstrap(x) => bootstrap::run(&config, &x)?,
};
Expand Down
2 changes: 1 addition & 1 deletion src/querydb/store.rs
Expand Up @@ -6,7 +6,7 @@ use pallas::{
},
};
use redb::{
Database, ReadOnlyTable, ReadTransaction, ReadableMultimapTable, ReadableTable, Table,
Database, ReadOnlyTable, ReadTransaction, ReadableMultimapTable, ReadableTable,
WriteTransaction,
};
use std::{ops::Deref, path::Path};
Expand Down

0 comments on commit 6db22a5

Please sign in to comment.