diff options
author | ferhat elmas <elmas.ferhat@gmail.com> | 2017-11-11 01:06:45 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2017-11-11 01:06:45 +0800 |
commit | 86f6568f6618945b19057553ec32690d723da982 (patch) | |
tree | ea7d9f92f3bcf5af22be1edfdbb302b5a5161f14 /consensus | |
parent | 3ee86a57f328530707974288e9db87b7c05283f9 (diff) | |
download | dexon-86f6568f6618945b19057553ec32690d723da982.tar.gz dexon-86f6568f6618945b19057553ec32690d723da982.tar.zst dexon-86f6568f6618945b19057553ec32690d723da982.zip |
build: enable unconvert linter (#15456)
* build: enable unconvert linter
- fixes #15453
- update code base for failing cases
* cmd/puppeth: replace syscall.Stdin with os.Stdin.Fd() for unconvert linter
Diffstat (limited to 'consensus')
-rw-r--r-- | consensus/ethash/algorithm_go1.8.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/consensus/ethash/algorithm_go1.8.go b/consensus/ethash/algorithm_go1.8.go index 62bf4dec1..d691b758f 100644 --- a/consensus/ethash/algorithm_go1.8.go +++ b/consensus/ethash/algorithm_go1.8.go @@ -31,7 +31,7 @@ func cacheSize(block uint64) uint64 { return cacheSizes[epoch] } // No known cache size, calculate manually (sanity branch only) - size := uint64(cacheInitBytes + cacheGrowthBytes*uint64(epoch) - hashBytes) + size := cacheInitBytes + cacheGrowthBytes*uint64(epoch) - hashBytes for !new(big.Int).SetUint64(size / hashBytes).ProbablyPrime(1) { // Always accurate for n < 2^64 size -= 2 * hashBytes } @@ -49,7 +49,7 @@ func datasetSize(block uint64) uint64 { return datasetSizes[epoch] } // No known dataset size, calculate manually (sanity branch only) - size := uint64(datasetInitBytes + datasetGrowthBytes*uint64(epoch) - mixBytes) + size := datasetInitBytes + datasetGrowthBytes*uint64(epoch) - mixBytes for !new(big.Int).SetUint64(size / mixBytes).ProbablyPrime(1) { // Always accurate for n < 2^64 size -= 2 * mixBytes } |