github.com/pure-x-eth/consensus_tm@v0.0.0-20230502163723-e3c2ff987250/state/txindex/kv/utils.go (about)

     1  package kv
     2  
     3  // IntInSlice returns true if a is found in the list.
     4  func intInSlice(a int, list []int) bool {
     5  	for _, b := range list {
     6  		if b == a {
     7  			return true
     8  		}
     9  	}
    10  	return false
    11  }