From 521e90afa6ce051e6d332a6aa470e01e162cdcf7 Mon Sep 17 00:00:00 2001 From: muXxer Date: Wed, 8 May 2024 15:13:12 +0200 Subject: [PATCH] Remove unused const in tools --- pkg/toolset/benchmark_cpu.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/pkg/toolset/benchmark_cpu.go b/pkg/toolset/benchmark_cpu.go index b1d0447ef..4523c5b87 100644 --- a/pkg/toolset/benchmark_cpu.go +++ b/pkg/toolset/benchmark_cpu.go @@ -2,17 +2,11 @@ package toolset import ( "context" - "crypto" "sync/atomic" "golang.org/x/crypto/blake2b" ) -const ( - // Hash defines the hash function that is used to compute the PoW digest. - Hash = crypto.BLAKE2b_256 -) - func cpuBenchmarkWorker(ctx context.Context, powDigest []byte, counter *uint64) { for { select {