Skip to content

Commit

Permalink
Merge PR #2917: Print commit ID in hex
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderbez authored and cwgoes committed Nov 27, 2018
1 parent f8ee8a7 commit cdb027e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion PENDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ IMPROVEMENTS
- #2821 Codespaces are now strings
- #2779 Introduce `ValidateBasic` to the `Tx` interface and call it in the ante
handler.
- #2825 More staking and distribution invariants
- #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
Expand Down
2 changes: 1 addition & 1 deletion baseapp/baseapp.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit cdb027e

Please sign in to comment.