2017-12-03 21:25:37 -08:00
|
|
|
package types
|
|
|
|
|
|
|
|
import (
|
|
|
|
abci "github.com/tendermint/abci/types"
|
2017-12-21 20:05:41 -08:00
|
|
|
cmn "github.com/tendermint/tmlibs/common"
|
2017-12-03 21:25:37 -08:00
|
|
|
)
|
|
|
|
|
|
|
|
// Result is the union of ResponseDeliverTx and ResponseCheckTx.
|
|
|
|
type Result struct {
|
|
|
|
|
|
|
|
// Code is the response code, is stored back on the chain.
|
2018-04-17 19:16:21 -07:00
|
|
|
Code ABCICodeType
|
2017-12-03 21:25:37 -08:00
|
|
|
|
|
|
|
// Data is any data returned from the app.
|
|
|
|
Data []byte
|
|
|
|
|
|
|
|
// Log is just debug information. NOTE: nondeterministic.
|
|
|
|
Log string
|
|
|
|
|
2017-12-26 17:04:48 -08:00
|
|
|
// GasWanted is the maximum units of work we allow this tx to perform.
|
|
|
|
GasWanted int64
|
2017-12-03 21:25:37 -08:00
|
|
|
|
2018-04-10 20:51:09 -07:00
|
|
|
// GasUsed is the amount of gas actually consumed. NOTE: unimplemented
|
2017-12-03 21:25:37 -08:00
|
|
|
GasUsed int64
|
|
|
|
|
|
|
|
// Tx fee amount and denom.
|
|
|
|
FeeAmount int64
|
|
|
|
FeeDenom string
|
|
|
|
|
|
|
|
// Changes to the validator set.
|
2017-12-26 17:04:48 -08:00
|
|
|
ValidatorUpdates []abci.Validator
|
2017-12-03 21:25:37 -08:00
|
|
|
|
|
|
|
// Tags are used for transaction indexing and pubsub.
|
2017-12-20 17:34:51 -08:00
|
|
|
Tags []cmn.KVPair
|
2017-12-03 21:25:37 -08:00
|
|
|
}
|
2018-01-26 05:11:01 -08:00
|
|
|
|
|
|
|
// TODO: In the future, more codes may be OK.
|
|
|
|
func (res Result) IsOK() bool {
|
2018-01-26 06:22:56 -08:00
|
|
|
return res.Code.IsOK()
|
2018-01-26 05:11:01 -08:00
|
|
|
}
|