github.com/sixexorg/magnetic-ring@v0.0.0-20191119090307-31705a21e419/errors/account_error.go (about) 1 package errors 2 3 import "errors" 4 5 var ( 6 ERR_ACCT_FMT1 = errors.New("wrong address format 1") 7 ERR_ACCT_FMT2 = errors.New("wrong address format 2") 8 ERR_ACCT_FMT3 = errors.New("wrong address format 3") 9 ERR_ACCT_FMT4 = errors.New("wrong address format 4") 10 ERR_ACCT_CRT_MULADDR = errors.New("pubks can not less than m") 11 ERR_ACCT_MULADDR_NOT_FOUND = errors.New("multiple account not found") 12 )