mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-05 10:32:19 +00:00
9 lines
180 B
Go
9 lines
180 B
Go
|
package beacontest
|
||
|
|
||
|
import "errors"
|
||
|
|
||
|
var (
|
||
|
ErrExpressionMustReturnBool = errors.New("cel expression must return bool")
|
||
|
ErrUnknownType = errors.New("unknown type")
|
||
|
)
|