75b02dff3d
* op-signer: add to this repo * circleci: add op-signer jobs/workflows * ops: update tag service to include op-signer * readme: add op-signer one sentence description * ci: add op-signer option to github action * ops: add op-signer min version
12 lines
421 B
Go
12 lines
421 B
Go
package service
|
|
|
|
type InvalidTransactionError struct{ message string }
|
|
|
|
func (e *InvalidTransactionError) Error() string { return e.message }
|
|
func (e *InvalidTransactionError) ErrorCode() int { return -32010 }
|
|
|
|
type UnauthorizedTransactionError struct{ message string }
|
|
|
|
func (e *UnauthorizedTransactionError) Error() string { return e.message }
|
|
func (e *UnauthorizedTransactionError) ErrorCode() int { return -32011 }
|