github.com/sixexorg/magnetic-ring@v0.0.0-20191119090307-31705a21e419/errors/sign_error.go (about) 1 package errors 2 3 import "errors" 4 5 var ( 6 SIG_ERR_SIZE = errors.New("sigpack size exception") 7 SIG_ERR_APPR_LVL = errors.New("approve level index out of bound") 8 SIG_ERR_UNSIGN = errors.New("sigbuf not found in sigdata") 9 SIG_ERR_WRONGOWNER = errors.New("not your transaction") 10 SIG_ERR_CANOT = errors.New("can not sign") 11 SIG_ERR_NULL_UNITS = errors.New("Multi Account Units can not be null") 12 SIG_ERR_NOSIG = errors.New("transaction has no signature") 13 SIG_ERR_SIGS_NOTENOUGH = errors.New("signature not enough") 14 SIG_ERR_APPROVE_NOT_ENOUGH = errors.New("approve level sign not enough") 15 SIG_ERR_INVALID_SIG = errors.New("invalide signature") 16 SIG_ERR_NOT_SUPPORT = errors.New("not support this way") 17 )