Skip to content

Commit b7e29b0

Browse files
committed
Fix build issues during cherry pick failure
Signed-off-by: Jacinta Ferrant <[email protected]>
1 parent f9f23fb commit b7e29b0

File tree

1 file changed

+5
-5
lines changed
  • testnet/stacks-node/src/tests/signer

1 file changed

+5
-5
lines changed

testnet/stacks-node/src/tests/signer/v0.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ use stacks::libstackerdb::StackerDBChunkData;
3939
use stacks::net::api::postblock_proposal::{ValidateRejectCode, TEST_VALIDATE_STALL};
4040
use stacks::types::chainstate::{StacksAddress, StacksBlockId, StacksPrivateKey, StacksPublicKey};
4141
use stacks::types::PublicKey;
42-
use stacks::util::hash::{Hash160, MerkleHashFunc};
42+
use stacks::util::hash::MerkleHashFunc;
4343
use stacks::util::secp256k1::{Secp256k1PrivateKey, Secp256k1PublicKey};
4444
use stacks::util_lib::boot::boot_code_id;
4545
use stacks::util_lib::signed_structured_data::pox4::{
@@ -63,9 +63,8 @@ use crate::nakamoto_node::sign_coordinator::TEST_IGNORE_SIGNERS;
6363
use crate::neon::Counters;
6464
use crate::run_loop::boot_nakamoto;
6565
use crate::tests::nakamoto_integrations::{
66-
boot_to_epoch_25, boot_to_epoch_3_reward_set, next_block_and, next_block_and_mine_commit,
67-
setup_epoch_3_reward_set, wait_for, POX_4_DEFAULT_STACKER_BALANCE,
68-
POX_4_DEFAULT_STACKER_STX_AMT,
66+
boot_to_epoch_25, boot_to_epoch_3_reward_set, next_block_and, setup_epoch_3_reward_set,
67+
wait_for, POX_4_DEFAULT_STACKER_BALANCE, POX_4_DEFAULT_STACKER_STX_AMT,
6968
};
7069
use crate::tests::neon_integrations::{
7170
get_account, get_chain_info, next_block_and_wait, run_until_burnchain_height, submit_tx,
@@ -2629,7 +2628,8 @@ fn multiple_miners_mock_sign_epoch_25() {
26292628
false
26302629
})
26312630
},
2632-
&[btc_miner_1_pk.clone(), btc_miner_2_pk.clone()],
2631+
Some(vec![btc_miner_1_pk.clone(), btc_miner_2_pk.clone()]),
2632+
None,
26332633
);
26342634
let conf = signer_test.running_nodes.conf.clone();
26352635
let mut conf_node_2 = conf.clone();

0 commit comments

Comments
 (0)