From 092ba768457d810383628c047fb2d24b27a5e353 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guillermo=20D=C3=ADaz?= Date: Tue, 20 Aug 2024 18:17:46 +0200 Subject: [PATCH] chore: fix deps to create::staking::helpers --- data_structures/src/staking/errors.rs | 2 +- data_structures/src/wit.rs | 2 +- node/src/actors/messages.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/data_structures/src/staking/errors.rs b/data_structures/src/staking/errors.rs index d0c26600b..03ac013a8 100644 --- a/data_structures/src/staking/errors.rs +++ b/data_structures/src/staking/errors.rs @@ -1,4 +1,4 @@ -use crate::staking::aux::StakeKey; +use crate::staking::helpers::StakeKey; use failure::Fail; use std::{ convert::From, diff --git a/data_structures/src/wit.rs b/data_structures/src/wit.rs index c9974003b..0023df3ea 100644 --- a/data_structures/src/wit.rs +++ b/data_structures/src/wit.rs @@ -2,7 +2,7 @@ use std::{fmt, ops::*}; use serde::{Deserialize, Serialize}; -use crate::{chain::Epoch, staking::aux::Power}; +use crate::{chain::Epoch, staking::helpers::Power}; /// 1 nanowit is the minimal unit of value /// 1 wit = 10^9 nanowits diff --git a/node/src/actors/messages.rs b/node/src/actors/messages.rs index 3b31b0ee7..efb18b360 100644 --- a/node/src/actors/messages.rs +++ b/node/src/actors/messages.rs @@ -27,7 +27,7 @@ use witnet_data_structures::{ }, fee::{deserialize_fee_backwards_compatible, Fee}, radon_report::RadonReport, - staking::{aux::StakeKey, stakes::QueryStakesKey}, + staking::{helpers::StakeKey, stakes::QueryStakesKey}, transaction::{ CommitTransaction, DRTransaction, RevealTransaction, StakeTransaction, Transaction, VTTransaction,