Skip to content

Commit 0945639

Browse files
authored
Merge pull request #1541 from txpipe/feat/kes_period
2 parents ef22aa8 + 4e87a39 commit 0945639

File tree

5 files changed

+205
-71
lines changed

5 files changed

+205
-71
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mithril-common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mithril-common"
3-
version = "0.3.15"
3+
version = "0.3.16"
44
description = "Common types, interfaces, and utilities for Mithril nodes."
55
authors = { workspace = true }
66
edition = { workspace = true }

mithril-common/src/chain_observer/builder.rs

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -75,17 +75,8 @@ impl ChainObserverBuilder {
7575
.to_owned(),
7676
))),
7777
ChainObserverType::Pallas => {
78-
let fallback = CardanoCliChainObserver::new(
79-
self.cardano_cli_runner
80-
.as_ref()
81-
.ok_or(ChainObserverBuilderError::MissingCardanoCliRunner)?
82-
.to_owned(),
83-
);
84-
let observer = PallasChainObserver::new(
85-
&self.cardano_node_socket_path,
86-
self.cardano_network,
87-
fallback,
88-
);
78+
let observer =
79+
PallasChainObserver::new(&self.cardano_node_socket_path, self.cardano_network);
8980
Ok(Arc::new(observer))
9081
}
9182
#[cfg(any(test, feature = "test_tools"))]

0 commit comments

Comments
 (0)