From 83e4145602a038b2af76e6fb36393fc3469423a5 Mon Sep 17 00:00:00 2001 From: Sean King Date: Mon, 17 Jan 2022 15:17:12 +0100 Subject: [PATCH] nit: option above import proto --- proto/ibc/applications/fee/v1/ack.proto | 4 ++-- proto/ibc/applications/fee/v1/fee.proto | 3 ++- proto/ibc/applications/fee/v1/genesis.proto | 3 ++- proto/ibc/applications/fee/v1/query.proto | 3 ++- proto/ibc/applications/fee/v1/tx.proto | 4 ++-- 5 files changed, 10 insertions(+), 7 deletions(-) diff --git a/proto/ibc/applications/fee/v1/ack.proto b/proto/ibc/applications/fee/v1/ack.proto index 10a6d9f0fe6..b978454892d 100644 --- a/proto/ibc/applications/fee/v1/ack.proto +++ b/proto/ibc/applications/fee/v1/ack.proto @@ -2,10 +2,10 @@ syntax = "proto3"; package ibc.applications.fee.v1; -import "gogoproto/gogo.proto"; - option go_package = "github.com/cosmos/ibc-go/v3/modules/apps/29-fee/types"; +import "gogoproto/gogo.proto"; + // IncentivizedAcknowledgement is the acknowledgement format to be used by applications wrapped in the fee middleware // It contains the raw acknowledgement bytes, as well as the forward relayer address message IncentivizedAcknowledgement { diff --git a/proto/ibc/applications/fee/v1/fee.proto b/proto/ibc/applications/fee/v1/fee.proto index 63c3403c3f1..44f82f655c0 100644 --- a/proto/ibc/applications/fee/v1/fee.proto +++ b/proto/ibc/applications/fee/v1/fee.proto @@ -2,11 +2,12 @@ syntax = "proto3"; package ibc.applications.fee.v1; +option go_package = "github.com/cosmos/ibc-go/v3/modules/apps/29-fee/types"; + import "cosmos/base/v1beta1/coin.proto"; import "gogoproto/gogo.proto"; import "ibc/core/channel/v1/channel.proto"; -option go_package = "github.com/cosmos/ibc-go/v3/modules/apps/29-fee/types"; // Fee implements the ics29 Fee interface // See Fee Payment Middleware spec: diff --git a/proto/ibc/applications/fee/v1/genesis.proto b/proto/ibc/applications/fee/v1/genesis.proto index e1f6a1b4432..2b07ea05146 100644 --- a/proto/ibc/applications/fee/v1/genesis.proto +++ b/proto/ibc/applications/fee/v1/genesis.proto @@ -2,11 +2,12 @@ syntax = "proto3"; package ibc.applications.fee.v1; +option go_package = "github.com/cosmos/ibc-go/v3/modules/apps/29-fee/types"; + import "gogoproto/gogo.proto"; import "ibc/applications/fee/v1/fee.proto"; import "ibc/core/channel/v1/channel.proto"; -option go_package = "github.com/cosmos/ibc-go/v3/modules/apps/29-fee/types"; // GenesisState defines the fee middleware genesis state message GenesisState { diff --git a/proto/ibc/applications/fee/v1/query.proto b/proto/ibc/applications/fee/v1/query.proto index ad7d56f5b2b..ce3b621ce73 100644 --- a/proto/ibc/applications/fee/v1/query.proto +++ b/proto/ibc/applications/fee/v1/query.proto @@ -2,13 +2,14 @@ syntax = "proto3"; package ibc.applications.fee.v1; +option go_package = "github.com/cosmos/ibc-go/v3/modules/apps/29-fee/types"; + import "gogoproto/gogo.proto"; import "ibc/applications/fee/v1/fee.proto"; import "google/api/annotations.proto"; import "ibc/core/channel/v1/channel.proto"; import "cosmos/base/query/v1beta1/pagination.proto"; -option go_package = "github.com/cosmos/ibc-go/v3/modules/apps/29-fee/types"; // Query provides defines the gRPC querier service. service Query { diff --git a/proto/ibc/applications/fee/v1/tx.proto b/proto/ibc/applications/fee/v1/tx.proto index 463396cd54d..4540c28967e 100644 --- a/proto/ibc/applications/fee/v1/tx.proto +++ b/proto/ibc/applications/fee/v1/tx.proto @@ -2,12 +2,12 @@ syntax = "proto3"; package ibc.applications.fee.v1; +option go_package = "github.com/cosmos/ibc-go/v3/modules/apps/29-fee/types"; + import "gogoproto/gogo.proto"; import "ibc/applications/fee/v1/fee.proto"; import "ibc/core/channel/v1/channel.proto"; -option go_package = "github.com/cosmos/ibc-go/v3/modules/apps/29-fee/types"; - // Msg defines the ibc/fee Msg service. service Msg { // RegisterCounterpartyAddress defines a rpc handler method for MsgRegisterCounterpartyAddress