Skip to content

Commit 4b5752e

Browse files
committed
Fix clippy::inconsistent_digit_grouping warnings in stacks lib
Signed-off-by: Jacinta Ferrant <[email protected]>
1 parent 0ee5d7c commit 4b5752e

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

stackslib/src/chainstate/nakamoto/coordinator/tests.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2318,9 +2318,9 @@ pub fn simple_nakamoto_coordinator_10_tenures_10_sortitions<'a>() -> TestPeer<'a
23182318
debug!("{}: {:?}", i, &matured_reward);
23192319

23202320
if i < 10 {
2321-
assert_eq!(matured_reward.parent_miner.coinbase, 3600_000_000);
2321+
assert_eq!(matured_reward.parent_miner.coinbase, 3_600_000_000);
23222322
} else {
2323-
assert_eq!(matured_reward.parent_miner.coinbase, 1000_000_000);
2323+
assert_eq!(matured_reward.parent_miner.coinbase, 1_000_000_000);
23242324
}
23252325

23262326
if i < 11 {
@@ -2353,9 +2353,9 @@ pub fn simple_nakamoto_coordinator_10_tenures_10_sortitions<'a>() -> TestPeer<'a
23532353
let miner_reward = &matured_reward.latest_miners[0];
23542354

23552355
if i < 9 {
2356-
assert_eq!(miner_reward.coinbase, 3600_000_000);
2356+
assert_eq!(miner_reward.coinbase, 3_600_000_000);
23572357
} else {
2358-
assert_eq!(miner_reward.coinbase, 1000_000_000);
2358+
assert_eq!(miner_reward.coinbase, 1_000_000_000);
23592359
}
23602360
if i < 10 {
23612361
// epoch2

stackslib/src/core/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -219,10 +219,10 @@ pub const BLOCK_LIMIT_MAINNET_21: ExecutionCost = ExecutionCost {
219219

220220
// Block limit for the testnet in Stacks 2.0.
221221
pub const HELIUM_BLOCK_LIMIT_20: ExecutionCost = ExecutionCost {
222-
write_length: 15_0_000_000,
223-
write_count: 5_0_000,
222+
write_length: 150_000_000,
223+
write_count: 50_000,
224224
read_length: 1_000_000_000,
225-
read_count: 5_0_000,
225+
read_count: 50_000,
226226
// allow much more runtime in helium blocks than mainnet
227227
runtime: 100_000_000_000,
228228
};

0 commit comments

Comments
 (0)