Files
tendermint/state/indexer/tx/kv/utils.go

12 lines
186 B
Go

package kv
// IntInSlice returns true if a is found in the list.
func intInSlice(a int, list []int) bool {
for _, b := range list {
if b == a {
return true
}
}
return false
}