-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'update-sdk47' into feat/admin-module-sdk47
- Loading branch information
Showing
43 changed files
with
1,936 additions
and
572 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
syntax = "proto3"; | ||
package neutron.contractmanager; | ||
|
||
import "ibc/core/channel/v1/channel.proto"; | ||
|
||
option go_package = "github.com/neutron-org/neutron/x/contractmanager/types"; | ||
|
||
// Failure message contains information about ACK failures and can be used to | ||
// replay ACK in case of requirement. | ||
// Note that Failure means that sudo handler to cosmwasm contract failed for some reason | ||
message Failure { | ||
// Address of the failed contract | ||
string address = 1; | ||
// Id of the failure under specific address | ||
uint64 id = 2; | ||
// Acknowledgement type | ||
string ack_type = 3; | ||
// IBC Packet | ||
ibc.core.channel.v1.Packet packet = 4; | ||
// Acknowledgement | ||
ibc.core.channel.v1.Acknowledgement ack = 5; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
syntax = "proto3"; | ||
package neutron.contractmanager.v1; | ||
|
||
option go_package = "github.com/neutron-org/neutron/x/contractmanager/types/v1"; | ||
|
||
// Deprecated. Used only for migration purposes. | ||
message Failure { | ||
// ChannelId | ||
string channel_id = 1; | ||
// Address of the failed contract | ||
string address = 2; | ||
// id of the failure under specific address | ||
uint64 id = 3; | ||
// ACK id to restore | ||
uint64 ack_id = 4; | ||
// Acknowledgement type | ||
string ack_type = 5; | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.