@@ -2287,25 +2287,14 @@ impl NodeConfig {
2287
2287
2288
2288
#[ derive( Clone , Debug , PartialEq ) ]
2289
2289
pub struct MinerConfig {
2290
- /// Time to wait (in milliseconds) before the first attempt to mine a block.
2291
2290
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.
2294
2291
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.
2297
2292
pub microblock_attempt_time_ms : u64 ,
2298
2293
/// Max time to assemble Nakamoto block
2299
2294
pub nakamoto_attempt_time_ms : u64 ,
2300
2295
/// Strategy to follow when picking next mempool transactions to consider.
2301
2296
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`.
2304
2297
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.
2309
2298
pub block_reward_recipient : Option < PrincipalData > ,
2310
2299
/// If possible, mine with a p2wpkh address
2311
2300
pub segwit : bool ,
0 commit comments