Merge pull request #534 from hxzqlh/master

logger key doesn't support blank space
This commit is contained in:
Anton Kaliaev 2017-06-14 12:38:13 +04:00 committed by GitHub
commit da646a8986
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ func execBlockOnProxyApp(eventCache types.Fireable, proxyAppConn proxy.AppConnCo
valDiff := abciResponses.EndBlock.Diffs valDiff := abciResponses.EndBlock.Diffs
logger.Info("Executed block", "height", block.Height, "valid txs", validTxs, "invalid txs", invalidTxs) logger.Info("Executed block", "height", block.Height, "validTxs", validTxs, "invalidTxs", invalidTxs)
if len(valDiff) > 0 { if len(valDiff) > 0 {
logger.Info("Update to validator set", "updates", abci.ValidatorsString(valDiff)) logger.Info("Update to validator set", "updates", abci.ValidatorsString(valDiff))
} }