Skip to content

Commit

Permalink
minor update
Browse files Browse the repository at this point in the history
  • Loading branch information
kkibria committed Mar 13, 2018
1 parent 4470150 commit 75ae0f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ethdag.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ func main() {
fmt.Fprintf(os.Stdout, "seedhash = %v\n", seedhash)

for i := uint64(0); i < *repeatPtr; i++ {
fmt.Sprintf("%s%v", *outDirPtr, epoch+i)
ethash.MakeDataset((epoch+i)*blocksPerEpoch, fmt.Sprintf("%s-%v", *outDirPtr, epoch+i))
uint64 e := epoch+i
ethash.MakeDataset((e)*blocksPerEpoch, fmt.Sprintf("%s-%v", *outDirPtr, e))
}

}

0 comments on commit 75ae0f5

Please sign in to comment.