Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions stacks-node/src/tests/signer/commands/block_wait.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ use stacks::chainstate::stacks::{TenureChangeCause, TenureChangePayload, Transac
use super::context::{SignerTestContext, SignerTestState};
use crate::tests::neon_integrations::get_chain_info;
use crate::tests::signer::v0::{
wait_for_block_global_rejection_with_reject_reason, wait_for_block_proposal,
wait_for_block_global_rejection_with_reject_reason, wait_for_block_proposal_block,
wait_for_block_pushed_by_miner_key,
};

Expand Down Expand Up @@ -260,7 +260,7 @@ impl Command<SignerTestState, SignerTestContext> for ChainExpectNakaBlockProposa

info!("Waiting for block proposal at height {expected_height}");

let proposed_block = wait_for_block_proposal(30, expected_height, &miner_pk)
let proposed_block = wait_for_block_proposal_block(30, expected_height, &miner_pk)
.expect("Timed out waiting for block proposal");

let block_hash = proposed_block.header.signer_signature_hash();
Expand Down
Loading