@@ -1746,24 +1746,24 @@ pub struct NodeConfig {
1746
1746
/// Enable microblock mining.
1747
1747
///
1748
1748
/// Default: `true`
1749
- /// Deprecated: Microblocks were removed in the Nakamoto upgrade. This setting is ignored in Epoch 3.0 +.
1749
+ /// Deprecated: This setting is ignored in Epoch 2.5 +.
1750
1750
pub mine_microblocks : bool ,
1751
1751
/// How often to attempt producing microblocks, in milliseconds.
1752
1752
/// Only applies when [`NodeConfig::mine_microblocks`] is true and before Epoch 2.5.
1753
1753
///
1754
- /// Default: `30_000`
1755
- /// Deprecated: Microblocks were removed in the Nakamoto upgrade. This setting is ignored in Epoch 3.0 +.
1754
+ /// Default: `30_000` ms (30 seconds)
1755
+ /// Deprecated: This setting is ignored in Epoch 2.5 +.
1756
1756
pub microblock_frequency : u64 ,
1757
- /// The maximum number of microblocks allowed per Stacks block (pre-Nakamoto) .
1757
+ /// The maximum number of microblocks allowed per Stacks block.
1758
1758
///
1759
1759
/// Default: `65535` (u16::MAX)
1760
- /// Deprecated: Microblocks were removed in the Nakamoto upgrade. This setting is ignored in Epoch 3.0 +.
1760
+ /// Deprecated: This setting is ignored in Epoch 2.5 +.
1761
1761
pub max_microblocks : u64 ,
1762
1762
/// Cooldown period after a microblock is produced, in milliseconds.
1763
1763
/// Only applies when [`NodeConfig::mine_microblocks`] is true and before Epoch 2.5.
1764
1764
///
1765
- /// Default: `30_000`
1766
- /// Deprecated: Microblocks were removed in the Nakamoto upgrade. This setting is ignored in Epoch 3.0 +.
1765
+ /// Default: `30_000` ms (30 seconds)
1766
+ /// Deprecated: This setting is ignored in Epoch 2.5 +.
1767
1767
pub wait_time_for_microblocks : u64 ,
1768
1768
/// When operating as a miner, this specifies the maximum time (in milliseconds)
1769
1769
/// the node waits after detecting a new burnchain block to synchronize corresponding
@@ -1772,14 +1772,14 @@ pub struct NodeConfig {
1772
1772
/// to prevent stalling. This setting is loaded by all nodes but primarily affects
1773
1773
/// miner behavior within the relayer thread.
1774
1774
///
1775
- /// Default: `30_000`
1775
+ /// Default: `30_000` ms (30 seconds)
1776
1776
pub wait_time_for_blocks : u64 ,
1777
1777
/// Controls how frequently, in milliseconds, the Nakamoto miner's relay thread polls for work
1778
1778
/// or takes periodic actions when idle (e.g., checking for new burnchain blocks).
1779
1779
/// Default value of 10 seconds is reasonable in mainnet (where bitcoin blocks are ~10 minutes)
1780
1780
/// A lower value might be useful in other environments with faster burn blocks.
1781
1781
///
1782
- /// Default: `10_000` (10 seconds)
1782
+ /// Default: `10_000` ms (10 seconds)
1783
1783
pub next_initiative_delay : u64 ,
1784
1784
/// Optional network address and port (e.g., "127.0.0.1:9153") for binding the Prometheus metrics server.
1785
1785
/// If set, the node will start an HTTP server on this address to expose internal metrics
@@ -1809,7 +1809,7 @@ pub struct NodeConfig {
1809
1809
/// Sampling interval in seconds for the PoX synchronization watchdog thread (pre-Nakamoto).
1810
1810
/// Determines how often the watchdog checked PoX state consistency in the Neon run loop.
1811
1811
///
1812
- /// Default: `30`
1812
+ /// Default: `30` seconds
1813
1813
/// Deprecated: Unused after the Nakamoto upgrade. This setting is ignored in Epoch 3.0+.
1814
1814
pub pox_sync_sample_secs : u64 ,
1815
1815
/// If set to `true`, the node initializes its state using an alternative test genesis block definition,
0 commit comments