File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed
chainstate/nakamoto/coordinator Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -2318,9 +2318,9 @@ pub fn simple_nakamoto_coordinator_10_tenures_10_sortitions<'a>() -> TestPeer<'a
2318
2318
debug ! ( "{}: {:?}" , i, & matured_reward) ;
2319
2319
2320
2320
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 ) ;
2322
2322
} else {
2323
- assert_eq ! ( matured_reward. parent_miner. coinbase, 1000_000_000 ) ;
2323
+ assert_eq ! ( matured_reward. parent_miner. coinbase, 1_000_000_000 ) ;
2324
2324
}
2325
2325
2326
2326
if i < 11 {
@@ -2353,9 +2353,9 @@ pub fn simple_nakamoto_coordinator_10_tenures_10_sortitions<'a>() -> TestPeer<'a
2353
2353
let miner_reward = & matured_reward. latest_miners [ 0 ] ;
2354
2354
2355
2355
if i < 9 {
2356
- assert_eq ! ( miner_reward. coinbase, 3600_000_000 ) ;
2356
+ assert_eq ! ( miner_reward. coinbase, 3_600_000_000 ) ;
2357
2357
} else {
2358
- assert_eq ! ( miner_reward. coinbase, 1000_000_000 ) ;
2358
+ assert_eq ! ( miner_reward. coinbase, 1_000_000_000 ) ;
2359
2359
}
2360
2360
if i < 10 {
2361
2361
// epoch2
Original file line number Diff line number Diff line change @@ -219,10 +219,10 @@ pub const BLOCK_LIMIT_MAINNET_21: ExecutionCost = ExecutionCost {
219
219
220
220
// Block limit for the testnet in Stacks 2.0.
221
221
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 ,
224
224
read_length : 1_000_000_000 ,
225
- read_count : 5_0_000 ,
225
+ read_count : 50_000 ,
226
226
// allow much more runtime in helium blocks than mainnet
227
227
runtime : 100_000_000_000 ,
228
228
} ;
You can’t perform that action at this time.
0 commit comments