mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-26 19:42:23 +00:00
performance: removed require call from benchmark test
This commit is contained in:
parent
eeb2fb7004
commit
6ef7837614
1 changed files with 6 additions and 2 deletions
|
@ -35,8 +35,12 @@ func BenchmarkTXPerformanceTest(t *testing.B) {
|
|||
t.ResetTimer()
|
||||
|
||||
for n := 0; n < t.N; n++ {
|
||||
require.Equal(t, server.RelayTxn(data[n]), network.RelaySucceed)
|
||||
require.Equal(t, server.RelayTxn(data[n]), network.RelayAlreadyExists)
|
||||
if server.RelayTxn(data[n]) != network.RelaySucceed {
|
||||
t.Fail()
|
||||
}
|
||||
if server.RelayTxn(data[n]) != network.RelayAlreadyExists {
|
||||
t.Fail()
|
||||
}
|
||||
}
|
||||
chain.Close()
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue