github.com/sixexorg/magnetic-ring@v0.0.0-20191119090307-31705a21e419/errors/radar_error.go (about) 1 package errors 2 3 import "errors" 4 5 var ( 6 ERR_RADAR_ABNORMAL_DATA = errors.New("Context data does not match. Data exception.") 7 8 ERR_RADAR_VERIFIED = errors.New("The radar is in calculation.") 9 10 ERR_RADAR_MAINTX_BEFORE = errors.New("Tx has been processed.") 11 12 ERR_RADAR_MAINTX_AFTER = errors.New("Before this tx, there's some tx that's missing.") 13 14 ERR_RADAR_TX_MOT_MATCH = errors.New("Maintx does not match the leaguetX in it.") 15 16 ERR_RADAR_TX_USELESS = errors.New("Useless tx") 17 18 ERR_RADAR_M_HEIGHT_BLOCKING = errors.New("The local specific league validation height has not reached the specified height.") 19 20 ERR_RADAR_NOT_FOUNT = errors.New("not found") 21 )