File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -2153,7 +2153,7 @@ pub struct MinerConfig {
2153
2153
pub subsequent_rejection_pause_ms : u64 ,
2154
2154
/// Duration to wait for a Nakamoto block after seeing a burnchain block before submitting a block commit.
2155
2155
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.
2157
2157
pub tenure_cost_limit_per_block_percentage : Option < u8 > ,
2158
2158
}
2159
2159
Original file line number Diff line number Diff line change @@ -920,7 +920,9 @@ fn forked_tenure_testing(
920
920
// need)
921
921
TEST_SKIP_BLOCK_BROADCAST . lock ( ) . unwrap ( ) . replace ( true ) ;
922
922
} ,
923
- |_| { } ,
923
+ |config| {
924
+ config. miner . tenure_cost_limit_per_block_percentage = None ;
925
+ } ,
924
926
None ,
925
927
None ,
926
928
) ;
You can’t perform that action at this time.
0 commit comments