File tree Expand file tree Collapse file tree 4 files changed +125
-114
lines changed
Expand file tree Collapse file tree 4 files changed +125
-114
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -245,6 +245,16 @@ replace (
245245)
246246
247247retract (
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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments