Skip to content

Commit 78c090e

Browse files
committed
feat(data_structures): revert adjustment of minimum stake
1 parent 8a8aafa commit 78c090e

File tree

1 file changed

+1
-8
lines changed
  • data_structures/src/chain

1 file changed

+1
-8
lines changed

data_structures/src/chain/mod.rs

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -355,14 +355,7 @@ impl ConsensusConstantsWit2 {
355355
/// left in stake by an `UnstakeTransaction`.
356356
pub fn get_validator_min_stake_nanowits(self, epoch: Epoch) -> u64 {
357357
if get_protocol_version(Some(epoch)) > ProtocolVersion::V1_7 {
358-
match get_environment() {
359-
Environment::Development => {
360-
1_000_000_000 // 1 Wit
361-
}
362-
_ => {
363-
10_000_000_000_000 // 10,000 Wit
364-
}
365-
}
358+
10_000_000_000_000 // 10,000 Wit
366359
} else {
367360
0
368361
}

0 commit comments

Comments
 (0)