Skip to content

Commit

Permalink
fix(code standards): remove misleading part of log message upon app h…
Browse files Browse the repository at this point in the history
…ash mismatch (#928)
  • Loading branch information
zale144 authored Jun 24, 2024
1 parent edcfd10 commit 10068f8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

### Bug Fixes

* **code standards:** remove `someone is behaving badly` part of the log message upon app hash mismatch [#917](https://github.com/dymensionxyz/dymint/issues/917) ([d5eece4](https://github.com/dymensionxyz/dymint/commit/d5eece4d1e161829dfc8e63a4b6313cc30dd2ed2))
* **bug:** memory leak in websocket handler ([#892](https://github.com/dymensionxyz/dymint/issues/892)) ([02fcbde](https://github.com/dymensionxyz/dymint/commit/48c263fbde71594ec34e0f731d9febc0702fcbde))
* **bug:** sync from da and p2p when starting a node ([#763](https://github.com/dymensionxyz/dymint/issues/763)) ([68ffd05](https://github.com/dymensionxyz/dymint/commit/68ffd05794949ddc42df1c132d1fde5f21b505f4))
* **celestia test:** fix race in test ([#755](https://github.com/dymensionxyz/dymint/issues/755)) ([0b36781](https://github.com/dymensionxyz/dymint/commit/0b367818bf6aa8da4a4fd8e4e5c78223b60b44e0))
Expand Down
3 changes: 2 additions & 1 deletion block/retriever.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import (
"fmt"

"code.cloudfoundry.org/go-diodes"

"github.com/dymensionxyz/dymint/da"
)

Expand Down Expand Up @@ -122,7 +123,7 @@ func (m *Manager) ProcessNextDABatch(daMetaData *da.DASubmitMetaData) error {
continue
}
if err := m.validateBlock(block, batch.Commits[i]); err != nil {
m.logger.Error("validate block from DA - someone is behaving badly", "height", block.Header.Height, "err", err)
m.logger.Error("validate block from DA", "height", block.Header.Height, "err", err)
continue
}
err := m.applyBlock(block, batch.Commits[i], blockMetaData{source: daBlock, daHeight: daMetaData.Height})
Expand Down

0 comments on commit 10068f8

Please sign in to comment.