Skip to content

Commit 6617512

Browse files
authored
Merge branch 'xion/main' into fix/v061OrigContractInfo
2 parents 940caaf + 5ab90e2 commit 6617512

File tree

4 files changed

+125
-114
lines changed

4 files changed

+125
-114
lines changed

docs/proto/proto-docs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,8 +236,8 @@ ContractInfo stores a WASM contract instance
236236
| `label` | [string](#string) | | Label is optional metadata to be stored with a contract instance. |
237237
| `created` | [AbsoluteTxPosition](#cosmwasm.wasm.v1.AbsoluteTxPosition) | | Created Tx position when the contract was instantiated. |
238238
| `ibc_port_id` | [string](#string) | | |
239-
| `ibc2_port_id` | [string](#string) | | |
240239
| `extension` | [google.protobuf.Any](#google.protobuf.Any) | | Extension is an extension point to store custom metadata within the persistence model. |
240+
| `ibc2_port_id` | [string](#string) | | |
241241

242242

243243

go.mod

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -245,6 +245,16 @@ replace (
245245
)
246246

247247
retract (
248+
// see https://github.com/CosmWasm/wasmd/issues/2386
249+
v0.61.4
250+
// see https://github.com/CosmWasm/wasmd/issues/2386
251+
v0.61.3
252+
// see https://github.com/CosmWasm/wasmd/issues/2386
253+
v0.61.2
254+
// see https://github.com/CosmWasm/wasmd/issues/2386
255+
v0.61.1
256+
// see https://github.com/CosmWasm/wasmd/issues/2386
257+
v0.61.0
248258
// see https://github.com/CosmWasm/wasmd/issues/1713
249259
v0.44.0
250260
// see https://github.com/CosmWasm/wasmd/issues/1713

proto/cosmwasm/wasm/v1/types.proto

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,13 +88,14 @@ message ContractInfo {
8888
// Created Tx position when the contract was instantiated.
8989
AbsoluteTxPosition created = 5;
9090
string ibc_port_id = 6 [ (gogoproto.customname) = "IBCPortID" ];
91-
string ibc2_port_id = 7 [ (gogoproto.customname) = "IBC2PortID" ];
9291

9392
// Extension is an extension point to store custom metadata within the
9493
// persistence model.
95-
google.protobuf.Any extension = 8
94+
google.protobuf.Any extension = 7
9695
[ (cosmos_proto.accepts_interface) =
9796
"cosmwasm.wasm.v1.ContractInfoExtension" ];
97+
98+
string ibc2_port_id = 8 [ (gogoproto.customname) = "IBC2PortID" ];
9899
}
99100

100101
// ContractCodeHistoryOperationType actions that caused a code change

0 commit comments

Comments
 (0)