Skip to content

Commit 0172e81

Browse files
committed
Fix go-gen test
1 parent 35a7c5b commit 0172e81

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

packages/go-gen/tests/cosmwasm_std__IbcMsg.go

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ type SendPacketMsg struct {
1212
}
1313
type WriteAcknowledgementMsg struct {
1414
// The acknowledgement to send back
15-
Ack IBCFullAcknowledgement `json:"ack"`
15+
Ack IBCAcknowledgement `json:"ack"`
1616
// Existing channel where the packet was received
1717
ChannelID string `json:"channel_id"`
1818
// Sequence number of the packet that was received
@@ -35,12 +35,8 @@ type Coin struct {
3535
Denom string `json:"denom"` // type, eg. "ATOM"
3636
}
3737

38-
// The acknowledgement written by the module on the destination chain. It is different from the [`crate::IbcAcknowledgement`] as it can be unsuccessful.
39-
type IBCFullAcknowledgement struct {
40-
// The acknowledgement data returned by the module.
38+
type IBCAcknowledgement struct {
4139
Data []byte `json:"data"`
42-
// Whether the acknowledgement was successful or not.
43-
Success bool `json:"success"`
4440
}
4541

4642
// IBCTimeout is the timeout for an IBC packet. At least one of block and timestamp is required.

0 commit comments

Comments
 (0)