diff options
Diffstat (limited to 'dagger_test.go')
-rw-r--r-- | dagger_test.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dagger_test.go b/dagger_test.go index 58cdd6afd..616577a39 100644 --- a/dagger_test.go +++ b/dagger_test.go @@ -1,13 +1,14 @@ package main import ( + "github.com/ethereum/ethutil-go" "math/big" "testing" ) func BenchmarkDaggerSearch(b *testing.B) { hash := big.NewInt(0) - diff := BigPow(2, 36) + diff := ethutil.BigPow(2, 36) o := big.NewInt(0) // nonce doesn't matter. We're only testing against speed, not validity // Reset timer so the big generation isn't included in the benchmark |