Skip to content

Commit c7e3415

Browse files
committed
updated SIP031_EMISSION_INTERVALS_TESTNET
1 parent 3af76cf commit c7e3415

File tree

1 file changed

+7
-7
lines changed
  • stackslib/src/chainstate/nakamoto

1 file changed

+7
-7
lines changed

stackslib/src/chainstate/nakamoto/mod.rs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -632,33 +632,33 @@ pub static SIP031_EMISSION_INTERVALS_MAINNET: LazyLock<[SIP031EmissionInterval;
632632
emissions_schedule
633633
});
634634

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)
636636
pub static SIP031_EMISSION_INTERVALS_TESTNET: LazyLock<[SIP031EmissionInterval; 6]> =
637637
LazyLock::new(|| {
638638
let emissions_schedule = [
639639
SIP031EmissionInterval {
640640
amount: 0,
641-
start_height: 30_000_602,
641+
start_height: 71_525 + (360 * 6),
642642
},
643643
SIP031EmissionInterval {
644644
amount: 5_000,
645-
start_height: 30_000_502,
645+
start_height: 71_525 + (360 * 5),
646646
},
647647
SIP031EmissionInterval {
648648
amount: 4_000,
649-
start_height: 30_000_402,
649+
start_height: 71_525 + (360 * 4),
650650
},
651651
SIP031EmissionInterval {
652652
amount: 3_000,
653-
start_height: 30_000_302,
653+
start_height: 71_525 + (360 * 3),
654654
},
655655
SIP031EmissionInterval {
656656
amount: 2_000,
657-
start_height: 30_000_202,
657+
start_height: 71_525 + (360 * 2),
658658
},
659659
SIP031EmissionInterval {
660660
amount: 1_000,
661-
start_height: 30_000_102,
661+
start_height: 71_525 + 360,
662662
},
663663
];
664664
assert!(SIP031EmissionInterval::check_inversed_order(

0 commit comments

Comments
 (0)