forked from TrueCloudLab/neoneo-go
15 lines
290 B
Go
15 lines
290 B
Go
package network
|
|
|
|
// RelayReason is the type which describes the different relay outcome.
|
|
type RelayReason uint8
|
|
|
|
// List of valid RelayReason.
|
|
const (
|
|
RelaySucceed RelayReason = iota
|
|
RelayAlreadyExists
|
|
RelayOutOfMemory
|
|
RelayUnableToVerify
|
|
RelayInvalid
|
|
RelayPolicyFail
|
|
RelayUnknown
|
|
)
|