evidence: remove unused param (#4726)

Signed-off-by: Marko Baricevic <marbar3778@yahoo.com>
This commit is contained in:
Marko
2020-04-22 17:18:24 +02:00
committed by GitHub
parent af887adad9
commit 7a6ca0c1bf
9 changed files with 30 additions and 31 deletions

View File

@@ -204,7 +204,7 @@ type mockEvidencePool struct {
func newMockEvidencePool(val []byte) *mockEvidencePool {
return &mockEvidencePool{
ev: []types.Evidence{types.NewMockEvidence(1, time.Now().UTC(), 1, val)},
ev: []types.Evidence{types.NewMockEvidence(1, time.Now().UTC(), val)},
}
}