Skip to content

Commit ffb60fe

Browse files
committed
fix deps
1 parent 84b8edf commit ffb60fe

File tree

5 files changed

+57
-78
lines changed

5 files changed

+57
-78
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/nix/store/i1k30qr48lvl8zyzymny3qy00ks9ihy2-pre-commit-config.json

Cargo.lock

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

catalyst-toolbox/src/bin/cli/rewards/full/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ pub(super) struct Inputs {
1818
pub(super) snapshot_path: PathBuf,
1919
pub(super) vote_count_path: PathBuf,
2020
pub(super) reviews_csv: PathBuf,
21-
pub(super) assessments_path: PathBuf,
21+
pub(super) assessments_path: PathBuf,
2222
pub(super) proposal_bonus_output: Option<PathBuf>,
2323
pub(super) approved_proposals_path: PathBuf,
2424
pub(super) active_voteplans: PathBuf,

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)