@@ -209,7 +209,7 @@ impl ConsensusConstants {
209
209
emission_initial: 5_538_846_115 * uT,
210
210
emission_decay: & EMISSION_DECAY ,
211
211
emission_tail: 100 . into( ) ,
212
- max_randomx_seed_height: std :: u64 :: MAX ,
212
+ max_randomx_seed_height: u64 :: MAX ,
213
213
proof_of_work: algos,
214
214
faucet_value: ( 5000 * 4000 ) * T ,
215
215
} ]
@@ -218,7 +218,7 @@ impl ConsensusConstants {
218
218
pub fn ridcully ( ) -> Vec < Self > {
219
219
let difficulty_block_window = 90 ;
220
220
let mut algos = HashMap :: new ( ) ;
221
- // seting sha3/monero to 40/60 split
221
+ // setting sha3/monero to 40/60 split
222
222
algos. insert ( PowAlgorithm :: Sha3 , PowAlgorithmConstants {
223
223
max_target_time : 1800 ,
224
224
min_difficulty : 60_000_000 . into ( ) ,
@@ -242,7 +242,7 @@ impl ConsensusConstants {
242
242
emission_initial: 5_538_846_115 * uT,
243
243
emission_decay: & EMISSION_DECAY ,
244
244
emission_tail: 100 . into( ) ,
245
- max_randomx_seed_height: std :: u64 :: MAX ,
245
+ max_randomx_seed_height: u64 :: MAX ,
246
246
proof_of_work: algos,
247
247
faucet_value: ( 5000 * 4000 ) * T ,
248
248
} ]
@@ -277,7 +277,7 @@ impl ConsensusConstants {
277
277
target_time : 200 ,
278
278
} ) ;
279
279
let mut algos2 = HashMap :: new ( ) ;
280
- // seting sha3/monero to 40/60 split
280
+ // setting sha3/monero to 40/60 split
281
281
algos2. insert ( PowAlgorithm :: Sha3 , PowAlgorithmConstants {
282
282
max_target_time : 1800 ,
283
283
min_difficulty : 60_000_000 . into ( ) ,
@@ -302,7 +302,7 @@ impl ConsensusConstants {
302
302
emission_initial: 5_538_846_115 * uT,
303
303
emission_decay: & EMISSION_DECAY ,
304
304
emission_tail: 100 . into( ) ,
305
- max_randomx_seed_height: std :: u64 :: MAX ,
305
+ max_randomx_seed_height: u64 :: MAX ,
306
306
proof_of_work: algos,
307
307
faucet_value: ( 5000 * 4000 ) * T ,
308
308
} ,
@@ -317,7 +317,7 @@ impl ConsensusConstants {
317
317
emission_initial: 5_538_846_115 * uT,
318
318
emission_decay: & EMISSION_DECAY ,
319
319
emission_tail: 100 . into( ) ,
320
- max_randomx_seed_height: std :: u64 :: MAX ,
320
+ max_randomx_seed_height: u64 :: MAX ,
321
321
proof_of_work: algos2,
322
322
faucet_value: ( 5000 * 4000 ) * T ,
323
323
} ,
@@ -326,7 +326,7 @@ impl ConsensusConstants {
326
326
327
327
pub fn weatherwax ( ) -> Vec < Self > {
328
328
let mut algos = HashMap :: new ( ) ;
329
- // seting sha3/monero to 40/60 split
329
+ // setting sha3/monero to 40/60 split
330
330
algos. insert ( PowAlgorithm :: Sha3 , PowAlgorithmConstants {
331
331
max_target_time : 1800 ,
332
332
min_difficulty : 60_000_000 . into ( ) ,
@@ -350,15 +350,15 @@ impl ConsensusConstants {
350
350
emission_initial: 5_538_846_115 * uT,
351
351
emission_decay: & EMISSION_DECAY ,
352
352
emission_tail: 100 . into( ) ,
353
- max_randomx_seed_height: std :: u64 :: MAX ,
353
+ max_randomx_seed_height: u64 :: MAX ,
354
354
proof_of_work: algos,
355
355
faucet_value: ( 5000 * 4000 ) * T ,
356
356
} ]
357
357
}
358
358
359
359
pub fn igor ( ) -> Vec < Self > {
360
360
let mut algos = HashMap :: new ( ) ;
361
- // seting sha3/monero to 40/60 split
361
+ // setting sha3/monero to 40/60 split
362
362
algos. insert ( PowAlgorithm :: Sha3 , PowAlgorithmConstants {
363
363
max_target_time : 1800 ,
364
364
min_difficulty : 60_000_000 . into ( ) ,
@@ -374,15 +374,15 @@ impl ConsensusConstants {
374
374
vec ! [ ConsensusConstants {
375
375
effective_from_height: 0 ,
376
376
coinbase_lock_height: 6 ,
377
- blockchain_version: 1 ,
377
+ blockchain_version: 2 ,
378
378
future_time_limit: 540 ,
379
379
difficulty_block_window: 90 ,
380
380
max_block_transaction_weight: 19500 ,
381
381
median_timestamp_count: 11 ,
382
382
emission_initial: 5_538_846_115 * uT,
383
383
emission_decay: & EMISSION_DECAY ,
384
384
emission_tail: 100 . into( ) ,
385
- max_randomx_seed_height: std :: u64 :: MAX ,
385
+ max_randomx_seed_height: u64 :: MAX ,
386
386
proof_of_work: algos,
387
387
faucet_value: ( 5000 * 4000 ) * T ,
388
388
} ]
@@ -415,7 +415,7 @@ impl ConsensusConstants {
415
415
emission_initial: 10_000_000 . into( ) ,
416
416
emission_decay: & EMISSION_DECAY ,
417
417
emission_tail: 100 . into( ) ,
418
- max_randomx_seed_height: std :: u64 :: MAX ,
418
+ max_randomx_seed_height: u64 :: MAX ,
419
419
proof_of_work: algos,
420
420
faucet_value: MicroTari :: from( 0 ) ,
421
421
} ]
0 commit comments