Skip to content

Commit b2d6fad

Browse files
committed
Cleanup
Signed-off-by: Jacinta Ferrant <[email protected]>
1 parent 99d9a80 commit b2d6fad

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

testnet/stacks-node/src/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2153,7 +2153,7 @@ pub struct MinerConfig {
21532153
pub subsequent_rejection_pause_ms: u64,
21542154
/// Duration to wait for a Nakamoto block after seeing a burnchain block before submitting a block commit.
21552155
pub block_commit_delay: Duration,
2156-
/// The percentage of the remaining tenure cost limit to consume each block. Defaults to 25%.
2156+
/// The percentage of the remaining tenure cost limit to consume each block.
21572157
pub tenure_cost_limit_per_block_percentage: Option<u8>,
21582158
}
21592159

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -920,7 +920,9 @@ fn forked_tenure_testing(
920920
// need)
921921
TEST_SKIP_BLOCK_BROADCAST.lock().unwrap().replace(true);
922922
},
923-
|_| {},
923+
|config| {
924+
config.miner.tenure_cost_limit_per_block_percentage = None;
925+
},
924926
None,
925927
None,
926928
);

0 commit comments

Comments
 (0)