diff options
author | gary rong <garyrong0905@gmail.com> | 2018-08-28 21:59:05 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2018-08-28 21:59:05 +0800 |
commit | c1c003e4ff36c22d67662ca661fc78cde850d401 (patch) | |
tree | b8bea54350fb6894cfd63ebc87a164acc3fba7e6 /eth/config.go | |
parent | 63352bf4247f05d8ef255ff8c63290225c3bc671 (diff) | |
download | go-tangerine-c1c003e4ff36c22d67662ca661fc78cde850d401.tar go-tangerine-c1c003e4ff36c22d67662ca661fc78cde850d401.tar.gz go-tangerine-c1c003e4ff36c22d67662ca661fc78cde850d401.tar.bz2 go-tangerine-c1c003e4ff36c22d67662ca661fc78cde850d401.tar.lz go-tangerine-c1c003e4ff36c22d67662ca661fc78cde850d401.tar.xz go-tangerine-c1c003e4ff36c22d67662ca661fc78cde850d401.tar.zst go-tangerine-c1c003e4ff36c22d67662ca661fc78cde850d401.zip |
consensus, miner: stale block mining support (#17506)
* consensus, miner: stale block supporting
* consensus, miner: refactor seal signature
* cmd, consensus, eth: add miner noverify flag
* cmd, consensus, miner: polish
Diffstat (limited to 'eth/config.go')
-rw-r--r-- | eth/config.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/eth/config.go b/eth/config.go index 5b2eca585..517d7d8f3 100644 --- a/eth/config.go +++ b/eth/config.go @@ -101,6 +101,7 @@ type Config struct { MinerExtraData []byte `toml:",omitempty"` MinerGasPrice *big.Int MinerRecommit time.Duration + MinerNoverify bool // Ethash options Ethash ethash.Config |