File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
stackslib/src/chainstate/nakamoto Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -632,33 +632,33 @@ pub static SIP031_EMISSION_INTERVALS_MAINNET: LazyLock<[SIP031EmissionInterval;
632
632
emissions_schedule
633
633
} ) ;
634
634
635
- /// Testnet sip-031 emission intervals (starting from 2100, basically dummy values )
635
+ /// Testnet sip-031 emission intervals (starting from 71_525, 1 interval every 360 bitcoin blocks )
636
636
pub static SIP031_EMISSION_INTERVALS_TESTNET : LazyLock < [ SIP031EmissionInterval ; 6 ] > =
637
637
LazyLock :: new ( || {
638
638
let emissions_schedule = [
639
639
SIP031EmissionInterval {
640
640
amount : 0 ,
641
- start_height : 30_000_602 ,
641
+ start_height : 71_525 + ( 360 * 6 ) ,
642
642
} ,
643
643
SIP031EmissionInterval {
644
644
amount : 5_000 ,
645
- start_height : 30_000_502 ,
645
+ start_height : 71_525 + ( 360 * 5 ) ,
646
646
} ,
647
647
SIP031EmissionInterval {
648
648
amount : 4_000 ,
649
- start_height : 30_000_402 ,
649
+ start_height : 71_525 + ( 360 * 4 ) ,
650
650
} ,
651
651
SIP031EmissionInterval {
652
652
amount : 3_000 ,
653
- start_height : 30_000_302 ,
653
+ start_height : 71_525 + ( 360 * 3 ) ,
654
654
} ,
655
655
SIP031EmissionInterval {
656
656
amount : 2_000 ,
657
- start_height : 30_000_202 ,
657
+ start_height : 71_525 + ( 360 * 2 ) ,
658
658
} ,
659
659
SIP031EmissionInterval {
660
660
amount : 1_000 ,
661
- start_height : 30_000_102 ,
661
+ start_height : 71_525 + 360 ,
662
662
} ,
663
663
] ;
664
664
assert ! ( SIP031EmissionInterval :: check_inversed_order(
You can’t perform that action at this time.
0 commit comments