Skip to content

Commit 94b413f

Browse files
authored
Merge pull request #158 from input-output-hk/feature/update-deps
Update chain-libs dependency
2 parents 49e4a02 + 6aac1e6 commit 94b413f

File tree

2 files changed

+32
-28
lines changed

2 files changed

+32
-28
lines changed

Cargo.lock

Lines changed: 30 additions & 27 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

catalyst-toolbox/src/vote_check/mod.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ mod explorer;
33
use assert_fs::{fixture::PathChild, TempDir};
44
use explorer::{transaction_by_id, TransactionById};
55
use graphql_client::{GraphQLQuery, Response};
6+
use jormungandr_automation::jormungandr::explorer::configuration::ExplorerParams;
67
use jormungandr_automation::jormungandr::{
78
Block0ConfigurationBuilder, ExplorerError, JormungandrError, JormungandrParams,
89
JormungandrProcess, NodeConfigBuilder, RestError, Starter, StartupError,
@@ -97,7 +98,7 @@ impl CheckNode {
9798
/// Check that all transactions are present on the main chain of the node
9899
pub fn check_transactions_on_chain(&self, transactions: Vec<String>) -> Result<(), Error> {
99100
let tip = self.inner.rest().tip()?.to_string();
100-
let explorer = self.inner.explorer();
101+
let explorer = self.inner.explorer(ExplorerParams::default());
101102
let explorer = explorer.client();
102103

103104
for id in transactions {

0 commit comments

Comments
 (0)