Patch for concurrent iterator & others (onto v1.11.6) #386

Closed
roysc wants to merge 1565 commits from v1.11.6-statediff-v5 into master
Showing only changes of commit 52eb87d87c - Show all commits

View File

@ -185,7 +185,7 @@ func benchmarkPrecompiled(addr string, test precompiledTest, bench *testing.B) {
return return
} }
if common.Bytes2Hex(res) != test.Expected { if common.Bytes2Hex(res) != test.Expected {
bench.Error(fmt.Sprintf("Expected %v, got %v", test.Expected, common.Bytes2Hex(res))) bench.Errorf("Expected %v, got %v", test.Expected, common.Bytes2Hex(res))
return return
} }
}) })