mirror of
https://github.com/grassrootseconomics/cic-custodial.git
synced 2024-11-22 14:16:47 +01:00
Mohammed Sohail
e203c49049
* remove uncessary tasks and task handlers * reafctor custodial container * refactor gas refiller. Gas refiller can queue at a later time to match cooldown * refactor sub handler to process chain events
26 lines
968 B
Go
26 lines
968 B
Go
package enum
|
|
|
|
type (
|
|
// OtxStatus represents enum-like values received in the dispatcher from the RPC node or Network callback.
|
|
// It includes a subset of well-known and likely failures the dispatcher may encounter.
|
|
OtxStatus string
|
|
// OtxType reprsents the specific type of signed transaction.
|
|
OtxType string
|
|
)
|
|
|
|
// NOTE: These values must also be inserted/updated into db to enforce referential integrity.
|
|
const (
|
|
IN_NETWORK OtxStatus = "IN_NETWORK"
|
|
OBSOLETE OtxStatus = "OBSOLETE"
|
|
SUCCESS OtxStatus = "SUCCESS"
|
|
FAIL_NO_GAS OtxStatus = "FAIL_NO_GAS"
|
|
FAIL_LOW_NONCE OtxStatus = "FAIL_LOW_NONCE"
|
|
FAIL_LOW_GAS_PRICE OtxStatus = "FAIL_LOW_GAS_PRICE"
|
|
FAIL_UNKNOWN_RPC_ERROR OtxStatus = "FAIL_UNKNOWN_RPC_ERROR"
|
|
REVERTED OtxStatus = "REVERTED"
|
|
|
|
ACCOUNT_REGISTER OtxType = "ACCOUNT_REGISTER"
|
|
REFILL_GAS OtxType = "REFILL_GAS"
|
|
TRANSFER_VOUCHER OtxType = "TRANSFER_VOUCHER"
|
|
)
|