diff options
author | Determinant <[email protected]> | 2019-09-25 18:42:09 -0400 |
---|---|---|
committer | Determinant <[email protected]> | 2019-09-25 18:42:09 -0400 |
commit | 35d55fc2bf9e8892a1174fc38b0dbba4af719044 (patch) | |
tree | 7e4db42c43884a542872c1ac2e5d014d9a71034f /miner/miner.go | |
parent | 1a3b464bafdb2097e3305bf4f44746cf2f5a98c8 (diff) |
allow disabling uncles
Diffstat (limited to 'miner/miner.go')
-rw-r--r-- | miner/miner.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/miner/miner.go b/miner/miner.go index 1f1baa8..60a5d39 100644 --- a/miner/miner.go +++ b/miner/miner.go @@ -50,6 +50,7 @@ type Config struct { Noverify bool // Disable remote mining solution verification(only useful in ethash). ManualMining bool ManualUncle bool + DisableUncle bool } type Miner struct { |