@@ -54,7 +54,7 @@ use stacks::core::{StacksEpochId, STACKS_EPOCH_MAX};
5454use stacks:: types:: chainstate:: StacksPrivateKey ;
5555use stacks:: util:: secp256k1:: Secp256k1PublicKey ;
5656
57- use super :: { pox5_staker_initial_balances , pox5_staker_keys , MultipleMinerTest } ;
57+ use super :: MultipleMinerTest ;
5858use crate :: tests:: nakamoto_integrations:: enable_epoch_4_0;
5959use crate :: tests:: neon_integrations:: test_observer;
6060use crate :: tests:: to_addr;
@@ -89,12 +89,8 @@ fn epoch_4_0_burn_distribution_chains_across_boundary() {
8989 }
9090
9191 let num_signers = 5 ;
92- let seed = "epoch_4_0_multi_miner" ;
9392 let stake_amount: u128 = 100_000_000_000 ;
9493 let lock_cycles: u128 = 12 ;
95- let stakers = pox5_staker_keys ( num_signers, seed) ;
96- let per_staker_balance: u64 = u64:: try_from ( stake_amount) . unwrap ( ) + 1_000_000 ;
97- let staker_balances = pox5_staker_initial_balances ( num_signers, seed, per_staker_balance) ;
9894
9995 let agg_pubkey: [ u8 ; 33 ] = Secp256k1PublicKey :: from_private ( & StacksPrivateKey :: from_seed (
10096 b"epoch-4-0-multi-miner-agg" ,
@@ -119,7 +115,6 @@ fn epoch_4_0_burn_distribution_chains_across_boundary() {
119115 let publisher_addr_str = publisher_addr. to_string ( ) ;
120116 let token_contract_id_modifier = token_contract_id. clone ( ) ;
121117 let registry_contract_id_modifier = registry_contract_id. clone ( ) ;
122- let staker_balances_modifier = staker_balances. clone ( ) ;
123118
124119 let mut miners = MultipleMinerTest :: new_with_config_modifications (
125120 num_signers,
@@ -132,9 +127,6 @@ fn epoch_4_0_burn_distribution_chains_across_boundary() {
132127 node_config. node . pox_5_sbtc_registry_contract =
133128 Some ( registry_contract_id_modifier. clone ( ) ) ;
134129 node_config. add_initial_balance ( publisher_addr_str. clone ( ) , 1_000_000 ) ;
135- for ( addr, balance) in staker_balances_modifier. iter ( ) {
136- node_config. add_initial_balance ( addr. to_string ( ) , * balance) ;
137- }
138130 enable_epoch_4_0 ( node_config) ;
139131 } ,
140132 |node_config| {
@@ -161,7 +153,6 @@ fn epoch_4_0_burn_distribution_chains_across_boundary() {
161153 token_contract_name,
162154 registry_contract_name,
163155 & agg_pubkey,
164- & stakers,
165156 stake_amount,
166157 lock_cycles,
167158 ) ;
0 commit comments