mirror of
https://github.com/fluencelabs/tendermint
synced 2025-06-25 10:41:41 +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