Group (code,data,log) return values into types.Result

This commit is contained in:
Jae Kwon
2016-03-20 17:10:59 -07:00
parent 9b4b533f2f
commit de6f76758d
2 changed files with 7 additions and 8 deletions

View File

@@ -9,7 +9,6 @@ import (
"github.com/tendermint/tendermint/proxy"
"github.com/tendermint/tendermint/types"
"github.com/tendermint/tmsp/example/counter"
tmsp "github.com/tendermint/tmsp/types"
)
func init() {
@@ -70,10 +69,10 @@ func TestSerialReap(t *testing.T) {
for i := start; i < end; i++ {
txBytes := make([]byte, 8)
binary.BigEndian.PutUint64(txBytes, uint64(i))
code, result, logStr := appConnCon.AppendTx(txBytes)
if code != tmsp.CodeType_OK {
res := appConnCon.AppendTx(txBytes)
if !res.IsOK() {
t.Errorf("Error committing tx. Code:%v result:%X log:%v",
code, result, logStr)
res.Code, res.Data, res.Log)
}
}
hash, log := appConnCon.Commit()