Skip to content

Commit

Permalink
Merge pull request #5537 from stacks-network/feat/sip029-testnet-block
Browse files Browse the repository at this point in the history
Feat/SIP029-testnet-heights
  • Loading branch information
wileyj authored Dec 9, 2024
2 parents 3b25d99 + 4e99dd2 commit 1c4a4f6
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
8 changes: 4 additions & 4 deletions stacks-common/src/types/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -172,19 +172,19 @@ pub const COINBASE_INTERVALS_TESTNET: LazyCell<[CoinbaseInterval; 5]> = LazyCell
},
CoinbaseInterval {
coinbase: 500 * u128::from(MICROSTACKS_PER_STACKS),
effective_start_height: 1000,
effective_start_height: 77_777,
},
CoinbaseInterval {
coinbase: 250 * u128::from(MICROSTACKS_PER_STACKS),
effective_start_height: 2000,
effective_start_height: 77_777 * 7,
},
CoinbaseInterval {
coinbase: 125 * u128::from(MICROSTACKS_PER_STACKS),
effective_start_height: 3000,
effective_start_height: 77_777 * 14,
},
CoinbaseInterval {
coinbase: (625 * u128::from(MICROSTACKS_PER_STACKS)) / 10,
effective_start_height: 4000,
effective_start_height: 77_777 * 21,
},
];
assert!(CoinbaseInterval::check_order(&emissions_schedule));
Expand Down
4 changes: 4 additions & 0 deletions testnet/stacks-node/conf/testnet-follower-conf.toml
Original file line number Diff line number Diff line change
Expand Up @@ -78,3 +78,7 @@ start_height = 6
[[burnchain.epochs]]
epoch_name = "3.0"
start_height = 56_457

[[burnchain.epochs]]
epoch_name = "3.1"
start_height = 77_770
4 changes: 4 additions & 0 deletions testnet/stacks-node/conf/testnet-miner-conf.toml
Original file line number Diff line number Diff line change
Expand Up @@ -74,3 +74,7 @@ start_height = 6
[[burnchain.epochs]]
epoch_name = "3.0"
start_height = 56_457

[[burnchain.epochs]]
epoch_name = "3.1"
start_height = 77_770

0 comments on commit 1c4a4f6

Please sign in to comment.