6828cf5e36
Sync to tip Co-authored-by: Brannon King <countprimes@gmail.com>
33 lines
524 B
Go
33 lines
524 B
Go
package node
|
|
|
|
import (
|
|
"github.com/lbryio/lbcd/claimtrie/change"
|
|
"github.com/lbryio/lbcd/wire"
|
|
)
|
|
|
|
type ClaimList []*Claim
|
|
|
|
type comparator func(c *Claim) bool
|
|
|
|
func byID(id change.ClaimID) comparator {
|
|
return func(c *Claim) bool {
|
|
return c.ClaimID == id
|
|
}
|
|
}
|
|
|
|
func byOut(out wire.OutPoint) comparator {
|
|
return func(c *Claim) bool {
|
|
return c.OutPoint == out // assuming value comparison
|
|
}
|
|
}
|
|
|
|
func (l ClaimList) find(cmp comparator) *Claim {
|
|
|
|
for i := range l {
|
|
if cmp(l[i]) {
|
|
return l[i]
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|