transaction: add new oracle response codes
Follow neo-project/neo#2037.
This commit is contained in:
parent
a9dddf893a
commit
a1ce3d2db2
1 changed files with 11 additions and 6 deletions
|
@ -22,11 +22,14 @@ const MaxOracleResultSize = math.MaxUint16
|
||||||
|
|
||||||
// Enumeration of possible oracle response types.
|
// Enumeration of possible oracle response types.
|
||||||
const (
|
const (
|
||||||
Success OracleResponseCode = 0x00
|
Success OracleResponseCode = 0x00
|
||||||
NotFound OracleResponseCode = 0x10
|
ConsensusUnreachable OracleResponseCode = 0x10
|
||||||
Timeout OracleResponseCode = 0x12
|
NotFound OracleResponseCode = 0x12
|
||||||
Forbidden OracleResponseCode = 0x14
|
Timeout OracleResponseCode = 0x14
|
||||||
Error OracleResponseCode = 0xff
|
Forbidden OracleResponseCode = 0x16
|
||||||
|
ResponseTooLarge OracleResponseCode = 0x18
|
||||||
|
InsufficientFunds OracleResponseCode = 0x1a
|
||||||
|
Error OracleResponseCode = 0xff
|
||||||
)
|
)
|
||||||
|
|
||||||
// Various validation errors.
|
// Various validation errors.
|
||||||
|
@ -37,7 +40,9 @@ var (
|
||||||
|
|
||||||
// IsValid checks if c is valid response code.
|
// IsValid checks if c is valid response code.
|
||||||
func (c OracleResponseCode) IsValid() bool {
|
func (c OracleResponseCode) IsValid() bool {
|
||||||
return c == Success || c == NotFound || c == Timeout || c == Forbidden || c == Error
|
return c == Success || c == ConsensusUnreachable || c == NotFound ||
|
||||||
|
c == Timeout || c == Forbidden || c == ResponseTooLarge ||
|
||||||
|
c == InsufficientFunds || c == Error
|
||||||
}
|
}
|
||||||
|
|
||||||
// DecodeBinary implements io.Serializable interface.
|
// DecodeBinary implements io.Serializable interface.
|
||||||
|
|
Loading…
Reference in a new issue