Skip to content

Commit

Permalink
proto: Add Order to MsgRegisterInterchainAccount.
Browse files Browse the repository at this point in the history
  • Loading branch information
DimitrisJim committed Jan 15, 2024
1 parent 3f83cf6 commit 0d52300
Show file tree
Hide file tree
Showing 2 changed files with 84 additions and 51 deletions.
127 changes: 79 additions & 48 deletions modules/apps/27-interchain-accounts/controller/types/tx.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import "gogoproto/gogo.proto";
import "ibc/applications/interchain_accounts/v1/packet.proto";
import "ibc/applications/interchain_accounts/controller/v1/controller.proto";
import "cosmos/msg/v1/msg.proto";
import "ibc/core/channel/v1/channel.proto";

// Msg defines the 27-interchain-accounts/controller Msg service.
service Msg {
Expand All @@ -27,9 +28,10 @@ message MsgRegisterInterchainAccount {

option (gogoproto.goproto_getters) = false;

string owner = 1;
string connection_id = 2;
string version = 3;
string owner = 1;
string connection_id = 2;
string version = 3;
ibc.core.channel.v1.Order order = 4;
}

// MsgRegisterInterchainAccountResponse defines the response for Msg/RegisterAccount
Expand Down

0 comments on commit 0d52300

Please sign in to comment.