result.gno
0.53 Kb · 16 lines
1package types
2
3// ResponseResultType defines the possible outcomes of the execution of a message
4type ResponseResultType int32
5
6const (
7 // Default zero value enumeration
8 RESPONSE_UNSPECIFIED ResponseResultType = 0
9 // The message did not call the IBC application callbacks (because, for
10 // example, the packet had already been relayed)
11 RESPONSE_NOOP ResponseResultType = 1
12 // The message was executed successfully
13 RESPONSE_SUCCESS ResponseResultType = 2
14 // The message was executed unsuccessfully
15 RESPONSE_FAILURE ResponseResultType = 3
16)