cic-custodial/pkg/status/status.go

12 lines
236 B
Go
Raw Normal View History

2023-02-09 08:42:15 +01:00
package status
type Status string
const (
2023-02-15 07:39:31 +01:00
FailGasPrice = "FAIL_LOW_GAS_PRICE"
FailInsufficientGas = "FAIL_NO_GAS"
FailNonce = "FAIL_LOW_NONCE"
Successful = "SUCCESSFUL"
Unknown = "UNKNOWN"
2023-02-09 08:42:15 +01:00
)