aboutsummaryrefslogtreecommitdiffstats
path: root/core/state/iterator_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'core/state/iterator_test.go')
-rw-r--r--core/state/iterator_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/state/iterator_test.go b/core/state/iterator_test.go
index aa05c5dfe..aa9c5b728 100644
--- a/core/state/iterator_test.go
+++ b/core/state/iterator_test.go
@@ -41,7 +41,7 @@ func TestNodeIteratorCoverage(t *testing.T) {
}
}
// Cross check the hashes and the database itself
- for hash, _ := range hashes {
+ for hash := range hashes {
if _, err := db.Get(hash.Bytes()); err != nil {
t.Errorf("failed to retrieve reported node %x: %v", hash, err)
}