Skip to content

Commit cb219c9

Browse files
committed
chore: merge artifacts
1 parent 07527ae commit cb219c9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

stacks-signer/src/signer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -753,7 +753,7 @@ impl Signer {
753753
);
754754
let block_info = BlockInfo::new_with_request(block.clone(), nonce_request.clone());
755755
stacks_client
756-
.submit_block_for_validation(block)
756+
.submit_block_for_validation_with_retry(block)
757757
.unwrap_or_else(|e| {
758758
warn!("{self}: Failed to submit block for validation: {e:?}",);
759759
});

testnet/stacks-node/src/tests/nakamoto_integrations.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2515,7 +2515,7 @@ fn stack_stx_burn_op_integration_test() {
25152515
info!("Bootstrapped to Epoch-3.0 boundary, starting nakamoto miner");
25162516

25172517
info!("Nakamoto miner started...");
2518-
blind_signer(&naka_conf, &signers, &signer_sk_1, proposals_submitted);
2518+
blind_signer(&naka_conf, &signers, proposals_submitted);
25192519
// first block wakes up the run loop, wait until a key registration has been submitted.
25202520
next_block_and(&mut btc_regtest_controller, 60, || {
25212521
let vrf_count = vrfs_submitted.load(Ordering::SeqCst);

0 commit comments

Comments
 (0)