We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a8aafa commit 78c090eCopy full SHA for 78c090e
data_structures/src/chain/mod.rs
@@ -355,14 +355,7 @@ impl ConsensusConstantsWit2 {
355
/// left in stake by an `UnstakeTransaction`.
356
pub fn get_validator_min_stake_nanowits(self, epoch: Epoch) -> u64 {
357
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
+ 10_000_000_000_000 // 10,000 Wit
366
} else {
367
0
368
}
0 commit comments