aboutsummaryrefslogtreecommitdiffstats
path: root/core/blockchain_test.go
diff options
context:
space:
mode:
authorMatthew Halpern <matthalp@google.com>2019-02-19 19:25:42 +0800
committerPéter Szilágyi <peterke@gmail.com>2019-02-19 19:25:42 +0800
commitbf42535d31eeecc12a1c2163e6644241fba9fa7a (patch)
tree7a07b0b9d9173632ec04223e35f8b19202fd9bf2 /core/blockchain_test.go
parentb5e5b3567c61ecbfd9094307e4efa53e3be3e23e (diff)
downloadgo-tangerine-bf42535d31eeecc12a1c2163e6644241fba9fa7a.tar
go-tangerine-bf42535d31eeecc12a1c2163e6644241fba9fa7a.tar.gz
go-tangerine-bf42535d31eeecc12a1c2163e6644241fba9fa7a.tar.bz2
go-tangerine-bf42535d31eeecc12a1c2163e6644241fba9fa7a.tar.lz
go-tangerine-bf42535d31eeecc12a1c2163e6644241fba9fa7a.tar.xz
go-tangerine-bf42535d31eeecc12a1c2163e6644241fba9fa7a.tar.zst
go-tangerine-bf42535d31eeecc12a1c2163e6644241fba9fa7a.zip
core: remove redundant parentheses (#19106)
Diffstat (limited to 'core/blockchain_test.go')
-rw-r--r--core/blockchain_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/blockchain_test.go b/core/blockchain_test.go
index 0372a9848..a16b3ba8a 100644
--- a/core/blockchain_test.go
+++ b/core/blockchain_test.go
@@ -1412,7 +1412,7 @@ func benchmarkLargeNumberOfValueToNonexisting(b *testing.B, numTxs, numBlocks in
}
b.StopTimer()
if got := chain.CurrentBlock().Transactions().Len(); got != numTxs*numBlocks {
- b.Fatalf("Transactions were not included, expected %d, got %d", (numTxs * numBlocks), got)
+ b.Fatalf("Transactions were not included, expected %d, got %d", numTxs*numBlocks, got)
}
}