Skip to content

Commit

Permalink
consensus: remove MINIMUM_STAKE
Browse files Browse the repository at this point in the history
  • Loading branch information
herr-seppia authored and moCello committed Aug 5, 2024
1 parent e9664f4 commit 5bf1ad7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions consensus/src/user/provisioners.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@

use crate::user::sortition;
use crate::user::stake::Stake;
use execution_core::dusk;
use execution_core::stake::MINIMUM_STAKE;
use node_data::bls::{PublicKey, PublicKeyBytes};
use node_data::StepName;

Expand All @@ -16,8 +18,7 @@ use std::mem;

use super::committee::Committee;

pub const DUSK: u64 = 1_000_000_000;
const MINIMUM_STAKE: u64 = 1_000 * DUSK;
pub const DUSK: u64 = dusk(1.0);

#[derive(Clone, Debug)]
pub struct Provisioners {
Expand Down

0 comments on commit 5bf1ad7

Please sign in to comment.