Skip to content

Commit

Permalink
ibc-transfer: fix non-deterministic attribute value (#8442)
Browse files Browse the repository at this point in the history
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
  • Loading branch information
bluele and mergify[bot] authored Jan 27, 2021
1 parent ce11c90 commit fd04f41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x/ibc/applications/transfer/module.go
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ func (am AppModule) OnAcknowledgementPacket(
sdk.NewAttribute(types.AttributeKeyReceiver, data.Receiver),
sdk.NewAttribute(types.AttributeKeyDenom, data.Denom),
sdk.NewAttribute(types.AttributeKeyAmount, fmt.Sprintf("%d", data.Amount)),
sdk.NewAttribute(types.AttributeKeyAck, fmt.Sprintf("%v", ack)),
sdk.NewAttribute(types.AttributeKeyAck, ack.String()),
),
)

Expand Down

0 comments on commit fd04f41

Please sign in to comment.