mirror of
https://github.com/tendermint/tendermint.git
synced 2026-01-07 13:55:17 +00:00
CommitSync() returns tmsp.Result
This commit is contained in:
@@ -75,9 +75,9 @@ func TestSerialReap(t *testing.T) {
|
||||
res.Code, res.Data, res.Log)
|
||||
}
|
||||
}
|
||||
hash, log := appConnCon.Commit()
|
||||
if len(hash) != 8 {
|
||||
t.Errorf("Error committing. Hash:%X log:%v", hash, log)
|
||||
res := appConnCon.Commit()
|
||||
if len(res.Data) != 8 {
|
||||
t.Errorf("Error committing. Hash:%X log:%v", res.Data, res.Log)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user