comment ToABCI

This commit is contained in:
William Banfield
2022-02-21 17:14:35 -05:00
parent 39e0957b40
commit 80a738300b
2 changed files with 3 additions and 3 deletions
+2
View File
@@ -681,6 +681,8 @@ func (evl EvidenceList) Has(evidence Evidence) bool {
return false
}
// ToABCI converts the evidence list to a list of the equivalent abci proto type
// for use when communicating the evidence to an application.
func (evl EvidenceList) ToABCI() []abci.Evidence {
el := make([]abci.Evidence, 0)
for _, e := range evl {