mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
Fix golint reported issue
This commit is contained in:
parent
88b56df9eb
commit
461310e401
1 changed files with 2 additions and 3 deletions
|
|
@ -401,10 +401,9 @@ func CalcDifficulty(chain consensus.ChainReader, time uint64, parent *types.Head
|
||||||
if parentNumber.Cmp(ubqhashConfig.FluxBlock) < 0 {
|
if parentNumber.Cmp(ubqhashConfig.FluxBlock) < 0 {
|
||||||
// (chain consensus.ChainReader, parentNumber, parentDiff *big.Int, parent *types.Header)
|
// (chain consensus.ChainReader, parentNumber, parentDiff *big.Int, parent *types.Header)
|
||||||
return calcDifficulty2(chain, parentNumber, parentDiff, parent)
|
return calcDifficulty2(chain, parentNumber, parentDiff, parent)
|
||||||
} else {
|
|
||||||
// (chain consensus.ChainReader, time, parentTime, parentNumber, parentDiff *big.Int, parent *types.Header)
|
|
||||||
return fluxDifficulty(chain, big.NewInt(int64(time)), big.NewInt(int64(parentTime)), parentNumber, parentDiff, parent)
|
|
||||||
}
|
}
|
||||||
|
// (chain consensus.ChainReader, time, parentTime, parentNumber, parentDiff *big.Int, parent *types.Header)
|
||||||
|
return fluxDifficulty(chain, big.NewInt(int64(time)), big.NewInt(int64(parentTime)), parentNumber, parentDiff, parent)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Some weird constants to avoid constant memory allocs for them.
|
// Some weird constants to avoid constant memory allocs for them.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue