mirror of
https://github.com/grassrootseconomics/cic-custodial.git
synced 2024-11-24 23:06:47 +01:00
12 lines
236 B
Go
12 lines
236 B
Go
package status
|
|
|
|
type Status string
|
|
|
|
const (
|
|
FailGasPrice = "FAIL_LOW_GAS_PRICE"
|
|
FailInsufficientGas = "FAIL_NO_GAS"
|
|
FailNonce = "FAIL_LOW_NONCE"
|
|
Successful = "SUCCESSFUL"
|
|
Unknown = "UNKNOWN"
|
|
)
|