Merge PR #2917: Print commit ID in hex
This commit is contained in:
parent
f8ee8a7f78
commit
cdb027e914
|
@ -78,6 +78,7 @@ IMPROVEMENTS
|
|||
- #2779 Introduce `ValidateBasic` to the `Tx` interface and call it in the ante
|
||||
handler.
|
||||
- #2825 More staking and distribution invariants
|
||||
* #2912 Print commit ID in hex when commit is synced.
|
||||
|
||||
* Tendermint
|
||||
- #2796 Update to go-amino 0.14.1
|
||||
|
|
|
@ -805,7 +805,7 @@ func (app *BaseApp) Commit() (res abci.ResponseCommit) {
|
|||
commitID := app.cms.Commit()
|
||||
// TODO: this is missing a module identifier and dumps byte array
|
||||
app.Logger.Debug("Commit synced",
|
||||
"commit", commitID,
|
||||
"commit", fmt.Sprintf("%X", commitID),
|
||||
)
|
||||
|
||||
// Reset the Check state to the latest committed
|
||||
|
|
Loading…
Reference in New Issue