We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c0bda4 commit 752949eCopy full SHA for 752949e
zebra-rpc/src/config/mining.rs
@@ -32,10 +32,12 @@ pub struct Config {
32
33
/// Mine blocks using Zebra's internal miner, without an external mining pool or equihash solver.
34
///
35
- /// This experimental feature is only supported on testnet.
36
- /// Mainnet miners should use a mining pool with GPUs or ASICs designed for efficient mining.
+ /// This experimental feature is only supported on regtest as it uses null solutions and skips checking
+ /// for a valid Proof of Work.
37
38
/// The internal miner is off by default.
39
+ // TODO: Restore equihash solver and recommend that Mainnet miners should use a mining pool with
40
+ // GPUs or ASICs designed for efficient mining.
41
#[cfg(feature = "internal-miner")]
42
pub internal_miner: bool,
43
}
0 commit comments