s/GetHash/Commit/g

This commit is contained in:
Jae Kwon
2016-02-14 13:11:01 -08:00
parent 1da8729e09
commit a6d37a49a2
5 changed files with 13 additions and 13 deletions

View File

@@ -84,13 +84,13 @@ func (s *State) execBlockOnProxyApp(evsw *events.EventSwitch, proxyAppConn proxy
return err
}
}
hash, logStr, err := proxyAppConn.GetHashSync()
hash, logStr, err := proxyAppConn.CommitSync()
if err != nil {
log.Warn("Error computing proxyAppConn hash", "error", err)
return err
}
if logStr != "" {
log.Debug("GetHash.Log: " + logStr)
log.Debug("Commit.Log: " + logStr)
}
log.Info(Fmt("ExecBlock got %v valid txs and %v invalid txs", validTxs, invalidTxs))