Skip to content

Commit 51c7017

Browse files
committed
remove MinerConfig new comments
1 parent 9e58d50 commit 51c7017

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

stackslib/src/config/mod.rs

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2287,25 +2287,14 @@ impl NodeConfig {
22872287

22882288
#[derive(Clone, Debug, PartialEq)]
22892289
pub struct MinerConfig {
2290-
/// Time to wait (in milliseconds) before the first attempt to mine a block.
22912290
pub first_attempt_time_ms: u64,
2292-
/// Time to wait (in milliseconds) for subsequent attempts to mine a block,
2293-
/// after the first attempt fails.
22942291
pub subsequent_attempt_time_ms: u64,
2295-
/// Time to wait (in milliseconds) to mine a microblock,
2296-
/// In epochs >= 3.0, this field is ignored.
22972292
pub microblock_attempt_time_ms: u64,
22982293
/// Max time to assemble Nakamoto block
22992294
pub nakamoto_attempt_time_ms: u64,
23002295
/// Strategy to follow when picking next mempool transactions to consider.
23012296
pub mempool_walk_strategy: MemPoolWalkStrategy,
2302-
/// Probability percentage to consider a transaction which has not received a cost estimate.
2303-
/// Only used when walk strategy is `GlobalFeeRate`.
23042297
pub probability_pick_no_estimate_tx: u8,
2305-
/// Optional recipient of the coinbase block reward.
2306-
/// If set and the current Stacks epoch is ≥ 2.1, the block reward will be
2307-
/// sent to this principal address instead of the default miner address.
2308-
/// In epochs prior to 2.1, this field is ignored.
23092298
pub block_reward_recipient: Option<PrincipalData>,
23102299
/// If possible, mine with a p2wpkh address
23112300
pub segwit: bool,

0 commit comments

Comments
 (0)