File tree Expand file tree Collapse file tree 1 file changed +14
-2
lines changed
testnet/stacks-node/src/tests/signer Expand file tree Collapse file tree 1 file changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -12115,8 +12115,20 @@ fn repeated_rejection() {
12115
12115
let send_amt = 100;
12116
12116
let send_fee = 180;
12117
12117
let recipient = PrincipalData::from(StacksAddress::burn_address(false));
12118
- let mut signer_test: SignerTest<SpawnedSigner> =
12119
- SignerTest::new(num_signers, vec![(sender_addr, (send_amt + send_fee) * 3)]);
12118
+ let mut signer_test: SignerTest<SpawnedSigner> = SignerTest::new_with_config_modifications(
12119
+ num_signers,
12120
+ vec![(sender_addr, (send_amt + send_fee) * 3)],
12121
+ |_| {},
12122
+ |config| {
12123
+ config.miner.block_rejection_timeout_steps.clear();
12124
+ config
12125
+ .miner
12126
+ .block_rejection_timeout_steps
12127
+ .insert(0, Duration::from_secs(120));
12128
+ },
12129
+ None,
12130
+ None,
12131
+ );
12120
12132
let http_origin = format!("http://{}", &signer_test.running_nodes.conf.node.rpc_bind);
12121
12133
signer_test.boot_to_epoch_3();
12122
12134
You can’t perform that action at this time.
0 commit comments