Skip to content

Commit af01a0a

Browse files
joeabbeymergify[bot]
authored andcommitted
fix: "acknowledgement written" logs unsupported type (#1919)
* fix: "acknowledgement written" logs unsupported type * Updating CHANGELOG.md Co-authored-by: Carlos Rodriguez <[email protected]> Co-authored-by: colin axnér <[email protected]> (cherry picked from commit 897e7eb) # Conflicts: # CHANGELOG.md
1 parent a610597 commit af01a0a

2 files changed

Lines changed: 9 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,14 @@ Ref: https://keepachangelog.com/en/1.0.0/
9090

9191
* (apps/29-fee) [\#1774](https://github.com/cosmos/ibc-go/pull/1774) Change non nil relayer assertion to non empty to avoid import/export issues for genesis upgrades.
9292
* (apps/29-fee) [\#1278](https://github.com/cosmos/ibc-go/pull/1278) The URI path for the query to get all incentivized packets for a specific channel did not follow the same format as the rest of queries.
93+
<<<<<<< HEAD
94+
=======
95+
-
96+
* (light-clients/solomachine) [#1839](https://github.com/cosmos/ibc-go/issues/1839) Fixed usage of the new diversifier in validation of changing diversifiers for the solo machine. The current diversifier must sign over the new diversifier.
97+
* (light-clients/07-tendermint) [\#1674](https://github.com/cosmos/ibc-go/pull/1674) Submitted ClientState is zeroed out before checking the proof in order to prevent the proposal from containing information governance is not actually voting on.
98+
* (modules/core/02-client)[\#1676](https://github.com/cosmos/ibc-go/pull/1676) ClientState must be zeroed out for `UpgradeProposals` to pass validation. This prevents a proposal containing information governance is not actually voting on.
99+
* (modules/core/04-channel)[\#1919](https://github.com/cosmos/ibc-go/pull/1919) Fixed formatting of sequence for packet "acknowledgement written" logs.
100+
>>>>>>> 897e7eb (fix: "acknowledgement written" logs unsupported type (#1919))
93101
94102
## [v3.1.0](https://github.com/cosmos/ibc-go/releases/tag/v3.1.0) - 2022-04-16
95103

modules/core/04-channel/keeper/packet.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ func (k Keeper) WriteAcknowledgement(
361361
// log that a packet acknowledgement has been written
362362
k.Logger(ctx).Info(
363363
"acknowledgement written",
364-
"sequence", packet.GetSequence(),
364+
"sequence", strconv.FormatUint(packet.GetSequence(), 10),
365365
"src_port", packet.GetSourcePort(),
366366
"src_channel", packet.GetSourceChannel(),
367367
"dst_port", packet.GetDestPort(),

0 commit comments

Comments
 (0)