Skip to content

Commit

Permalink
chore: fix deps to create::staking::helpers
Browse files Browse the repository at this point in the history
  • Loading branch information
guidiaz committed Aug 20, 2024
1 parent a8fadb7 commit 092ba76
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion data_structures/src/staking/errors.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use crate::staking::aux::StakeKey;
use crate::staking::helpers::StakeKey;
use failure::Fail;
use std::{
convert::From,
Expand Down
2 changes: 1 addition & 1 deletion data_structures/src/wit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion node/src/actors/messages.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 092ba76

Please sign in to comment.