From 23c1c88734d14ce1d71f78865d749877473e5514 Mon Sep 17 00:00:00 2001 From: William Banfield Date: Wed, 23 Feb 2022 11:20:37 -0500 Subject: [PATCH] ToABCI comment fix --- types/evidence.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/evidence.go b/types/evidence.go index a2297fe4e..562cb0da7 100644 --- a/types/evidence.go +++ b/types/evidence.go @@ -681,7 +681,7 @@ func (evl EvidenceList) Has(evidence Evidence) bool { return false } -// ToABCI converts the evidence list to a list of the equivalent abci proto type +// ToABCI converts the evidence list to a slice of the ABCI protobuf messages // for use when communicating the evidence to an application. func (evl EvidenceList) ToABCI() []abci.Evidence { el := make([]abci.Evidence, 0)