Skip to content

Commit

Permalink
Merge pull request #158 from input-output-hk/feature/update-deps
Browse files Browse the repository at this point in the history
Update chain-libs dependency
  • Loading branch information
Mr-Leshiy committed Aug 8, 2022
2 parents 49e4a02 + 6aac1e6 commit 94b413f
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 28 deletions.
57 changes: 30 additions & 27 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion catalyst-toolbox/src/vote_check/mod.rs
Expand Up @@ -3,6 +3,7 @@ mod explorer;
use assert_fs::{fixture::PathChild, TempDir};
use explorer::{transaction_by_id, TransactionById};
use graphql_client::{GraphQLQuery, Response};
use jormungandr_automation::jormungandr::explorer::configuration::ExplorerParams;
use jormungandr_automation::jormungandr::{
Block0ConfigurationBuilder, ExplorerError, JormungandrError, JormungandrParams,
JormungandrProcess, NodeConfigBuilder, RestError, Starter, StartupError,
Expand Down Expand Up @@ -97,7 +98,7 @@ impl CheckNode {
/// Check that all transactions are present on the main chain of the node
pub fn check_transactions_on_chain(&self, transactions: Vec<String>) -> Result<(), Error> {
let tip = self.inner.rest().tip()?.to_string();
let explorer = self.inner.explorer();
let explorer = self.inner.explorer(ExplorerParams::default());
let explorer = explorer.client();

for id in transactions {
Expand Down

0 comments on commit 94b413f

Please sign in to comment.