diff options
Diffstat (limited to 'core/dagger_test.go')
-rw-r--r-- | core/dagger_test.go | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/core/dagger_test.go b/core/dagger_test.go deleted file mode 100644 index e80064e6b..000000000 --- a/core/dagger_test.go +++ /dev/null @@ -1,19 +0,0 @@ -package core - -import ( - "math/big" - "testing" - - "github.com/ethereum/go-ethereum/ethutil" -) - -func BenchmarkDaggerSearch(b *testing.B) { - hash := big.NewInt(0) - 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 - b.ResetTimer() - // Validate - DaggerVerify(hash, diff, o) -} |