Rename 2 fields and regenerate protobuf

This commit is contained in:
Ethan Frey
2021-07-27 09:24:29 +02:00
parent 9a6f2b5c11
commit 1fa2165806
3 changed files with 76 additions and 78 deletions

View File

@@ -340,7 +340,7 @@ code id.
| `admin` | [string](#string) | | Admin is an optional address that can execute migrations | | `admin` | [string](#string) | | Admin is an optional address that can execute migrations |
| `code_id` | [uint64](#uint64) | | CodeID is the reference to the stored WASM code | | `code_id` | [uint64](#uint64) | | CodeID is the reference to the stored WASM code |
| `label` | [string](#string) | | Label is optional metadata to be stored with a contract instance. | | `label` | [string](#string) | | Label is optional metadata to be stored with a contract instance. |
| `init_msg` | [bytes](#bytes) | | InitMsg json encoded message to be passed to the contract on instantiation | | `msg` | [bytes](#bytes) | | Msg json encoded message to be passed to the contract on instantiation |
| `funds` | [cosmos.base.v1beta1.Coin](#cosmos.base.v1beta1.Coin) | repeated | Funds coins that are transferred to the contract on instantiation | | `funds` | [cosmos.base.v1beta1.Coin](#cosmos.base.v1beta1.Coin) | repeated | Funds coins that are transferred to the contract on instantiation |
@@ -375,7 +375,7 @@ MsgMigrateContract runs a code upgrade/ downgrade for a smart contract
| `sender` | [string](#string) | | Sender is the that actor that signed the messages | | `sender` | [string](#string) | | Sender is the that actor that signed the messages |
| `contract` | [string](#string) | | Contract is the address of the smart contract | | `contract` | [string](#string) | | Contract is the address of the smart contract |
| `code_id` | [uint64](#uint64) | | CodeID references the new WASM code | | `code_id` | [uint64](#uint64) | | CodeID references the new WASM code |
| `migrate_msg` | [bytes](#bytes) | | MigrateMsg json encoded message to be passed to the contract on migration | | `msg` | [bytes](#bytes) | | Msg json encoded message to be passed to the contract on migration |

View File

@@ -57,8 +57,8 @@ message MsgInstantiateContract {
uint64 code_id = 3 [ (gogoproto.customname) = "CodeID" ]; uint64 code_id = 3 [ (gogoproto.customname) = "CodeID" ];
// Label is optional metadata to be stored with a contract instance. // Label is optional metadata to be stored with a contract instance.
string label = 4; string label = 4;
// InitMsg json encoded message to be passed to the contract on instantiation // Msg json encoded message to be passed to the contract on instantiation
bytes init_msg = 5; bytes msg = 5;
// Funds coins that are transferred to the contract on instantiation // Funds coins that are transferred to the contract on instantiation
repeated cosmos.base.v1beta1.Coin funds = 6 [ repeated cosmos.base.v1beta1.Coin funds = 6 [
(gogoproto.nullable) = false, (gogoproto.nullable) = false,
@@ -102,8 +102,8 @@ message MsgMigrateContract {
string contract = 2; string contract = 2;
// CodeID references the new WASM code // CodeID references the new WASM code
uint64 code_id = 3 [ (gogoproto.customname) = "CodeID" ]; uint64 code_id = 3 [ (gogoproto.customname) = "CodeID" ];
// MigrateMsg json encoded message to be passed to the contract on migration // Msg json encoded message to be passed to the contract on migration
bytes migrate_msg = 4; bytes msg = 4;
} }
// MsgMigrateContractResponse returns contract migration result data. // MsgMigrateContractResponse returns contract migration result data.

View File

@@ -129,8 +129,8 @@ type MsgInstantiateContract struct {
CodeID uint64 `protobuf:"varint,3,opt,name=code_id,json=codeId,proto3" json:"code_id,omitempty"` CodeID uint64 `protobuf:"varint,3,opt,name=code_id,json=codeId,proto3" json:"code_id,omitempty"`
// Label is optional metadata to be stored with a contract instance. // Label is optional metadata to be stored with a contract instance.
Label string `protobuf:"bytes,4,opt,name=label,proto3" json:"label,omitempty"` Label string `protobuf:"bytes,4,opt,name=label,proto3" json:"label,omitempty"`
// InitMsg json encoded message to be passed to the contract on instantiation // Msg json encoded message to be passed to the contract on instantiation
InitMsg []byte `protobuf:"bytes,5,opt,name=init_msg,json=initMsg,proto3" json:"init_msg,omitempty"` Msg []byte `protobuf:"bytes,5,opt,name=msg,proto3" json:"msg,omitempty"`
// Funds coins that are transferred to the contract on instantiation // Funds coins that are transferred to the contract on instantiation
Funds github_com_cosmos_cosmos_sdk_types.Coins `protobuf:"bytes,6,rep,name=funds,proto3,castrepeated=github.com/cosmos/cosmos-sdk/types.Coins" json:"funds"` Funds github_com_cosmos_cosmos_sdk_types.Coins `protobuf:"bytes,6,rep,name=funds,proto3,castrepeated=github.com/cosmos/cosmos-sdk/types.Coins" json:"funds"`
} }
@@ -301,8 +301,8 @@ type MsgMigrateContract struct {
Contract string `protobuf:"bytes,2,opt,name=contract,proto3" json:"contract,omitempty"` Contract string `protobuf:"bytes,2,opt,name=contract,proto3" json:"contract,omitempty"`
// CodeID references the new WASM code // CodeID references the new WASM code
CodeID uint64 `protobuf:"varint,3,opt,name=code_id,json=codeId,proto3" json:"code_id,omitempty"` CodeID uint64 `protobuf:"varint,3,opt,name=code_id,json=codeId,proto3" json:"code_id,omitempty"`
// MigrateMsg json encoded message to be passed to the contract on migration // Msg json encoded message to be passed to the contract on migration
MigrateMsg []byte `protobuf:"bytes,4,opt,name=migrate_msg,json=migrateMsg,proto3" json:"migrate_msg,omitempty"` Msg []byte `protobuf:"bytes,4,opt,name=msg,proto3" json:"msg,omitempty"`
} }
func (m *MsgMigrateContract) Reset() { *m = MsgMigrateContract{} } func (m *MsgMigrateContract) Reset() { *m = MsgMigrateContract{} }
@@ -554,56 +554,54 @@ func init() {
func init() { proto.RegisterFile("cosmwasm/wasm/v1beta1/tx.proto", fileDescriptor_b74028d4038589a4) } func init() { proto.RegisterFile("cosmwasm/wasm/v1beta1/tx.proto", fileDescriptor_b74028d4038589a4) }
var fileDescriptor_b74028d4038589a4 = []byte{ var fileDescriptor_b74028d4038589a4 = []byte{
// 769 bytes of a gzipped FileDescriptorProto // 748 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x55, 0xcd, 0x6e, 0xd3, 0x4c, 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x55, 0x4d, 0x6f, 0xd3, 0x4a,
0x14, 0x8d, 0xbf, 0xfc, 0x35, 0x37, 0xf9, 0x4a, 0x65, 0xda, 0xe2, 0x1a, 0xc9, 0x09, 0x29, 0xa0, 0x14, 0x8d, 0x5f, 0x3e, 0xda, 0xdc, 0xe6, 0xf5, 0x55, 0x7e, 0x6d, 0x31, 0x46, 0x72, 0x82, 0x0b,
0x20, 0x68, 0xd2, 0x16, 0xc1, 0x86, 0x55, 0x93, 0xb2, 0xe8, 0xc2, 0x08, 0xb9, 0x42, 0x95, 0x2a, 0x28, 0x08, 0xea, 0xb4, 0x45, 0xb0, 0x61, 0xd5, 0xb8, 0x2c, 0xba, 0x30, 0x42, 0xae, 0x50, 0xa5,
0xa1, 0x30, 0xb1, 0xa7, 0xc6, 0x22, 0xf6, 0x44, 0x9e, 0x09, 0x6d, 0xc5, 0x1b, 0xb0, 0x40, 0x3c, 0x4a, 0x28, 0x8c, 0xed, 0xa9, 0xb1, 0x88, 0x3d, 0x91, 0x67, 0x42, 0x5b, 0xb1, 0x60, 0xcf, 0x8a,
0x07, 0xef, 0xc0, 0xbe, 0xcb, 0x2e, 0x59, 0x15, 0x48, 0xb7, 0xbc, 0x03, 0x68, 0xc6, 0x3f, 0x71, 0xdf, 0xc1, 0x7f, 0x60, 0xdf, 0x65, 0x97, 0xac, 0x0a, 0xa4, 0x5b, 0xd6, 0xac, 0x91, 0xc7, 0x1f,
0x43, 0x1c, 0x05, 0x21, 0x36, 0xc9, 0x5c, 0xcf, 0xb9, 0xe7, 0xcc, 0x3d, 0xba, 0x73, 0x07, 0x34, 0x75, 0x43, 0x1c, 0x05, 0x21, 0x36, 0xce, 0xdc, 0xcc, 0xb9, 0xe7, 0xcc, 0x3d, 0x3a, 0x1e, 0x83,
0x93, 0x50, 0xf7, 0x18, 0x51, 0xb7, 0x25, 0x7e, 0xde, 0x6e, 0xf5, 0x30, 0x43, 0x5b, 0x2d, 0x76, 0x62, 0x13, 0xea, 0x1f, 0x21, 0xea, 0x77, 0xf8, 0xe3, 0xcd, 0xa6, 0x85, 0x19, 0xda, 0xec, 0xb0,
0xd2, 0x1c, 0xf8, 0x84, 0x11, 0x79, 0x25, 0xda, 0x6f, 0x8a, 0x9f, 0x70, 0x5f, 0x15, 0x69, 0x84, 0x63, 0x6d, 0x10, 0x12, 0x46, 0xc4, 0x95, 0x74, 0x5f, 0xe3, 0x8f, 0x64, 0x5f, 0xe6, 0x6d, 0x84,
0xb6, 0x7a, 0x88, 0xe2, 0x38, 0xc9, 0x24, 0x8e, 0x17, 0xa4, 0xa9, 0xcb, 0x36, 0xb1, 0x89, 0x58, 0x76, 0x2c, 0x44, 0x71, 0xd6, 0x64, 0x13, 0x2f, 0x88, 0xdb, 0xe4, 0x65, 0x97, 0xb8, 0x84, 0x2f,
0xb6, 0xf8, 0x2a, 0xfc, 0x7a, 0x2b, 0x45, 0xec, 0x74, 0x80, 0x69, 0x00, 0xa9, 0xff, 0x90, 0xa0, 0x3b, 0xd1, 0x2a, 0xf9, 0xf7, 0x66, 0x81, 0xd8, 0xc9, 0x00, 0xd3, 0x18, 0xa2, 0x7e, 0x17, 0xa0,
0xa2, 0x53, 0x7b, 0x9f, 0x11, 0x1f, 0x77, 0x88, 0x85, 0xe5, 0x55, 0x28, 0x50, 0xec, 0x59, 0xd8, 0x61, 0x50, 0x77, 0x8f, 0x91, 0x10, 0xeb, 0xc4, 0xc1, 0xe2, 0x2a, 0xd4, 0x28, 0x0e, 0x1c, 0x1c,
0x57, 0xa4, 0x9a, 0xd4, 0x28, 0x19, 0x61, 0x24, 0x3f, 0x86, 0x45, 0x4e, 0xd2, 0xed, 0x9d, 0x32, 0x4a, 0x42, 0x4b, 0x68, 0xd7, 0xcd, 0xa4, 0x12, 0x1f, 0xc1, 0x62, 0x44, 0xd2, 0xb3, 0x4e, 0x18,
0xdc, 0x35, 0x89, 0x85, 0x95, 0xff, 0x6a, 0x52, 0xa3, 0xd2, 0x5e, 0x1a, 0x5d, 0x54, 0x2b, 0x07, 0xee, 0xd9, 0xc4, 0xc1, 0xd2, 0x3f, 0x2d, 0xa1, 0xdd, 0xe8, 0x2e, 0x8d, 0xce, 0x9b, 0x8d, 0xfd,
0x3b, 0xfb, 0x7a, 0xfb, 0x94, 0x09, 0x06, 0xa3, 0xc2, 0x71, 0x51, 0x24, 0xf8, 0xc8, 0xd0, 0x37, 0xed, 0x3d, 0xa3, 0x7b, 0xc2, 0x38, 0x83, 0xd9, 0x88, 0x70, 0x69, 0xc5, 0xf9, 0xc8, 0x30, 0xb4,
0xb1, 0x92, 0x0d, 0xf9, 0x44, 0x24, 0x2b, 0x50, 0xec, 0x0d, 0x9d, 0x3e, 0x17, 0xca, 0x89, 0x8d, 0xb1, 0x54, 0x4e, 0xf8, 0x78, 0x25, 0x4a, 0x30, 0x67, 0x0d, 0xbd, 0x7e, 0x24, 0x54, 0xe1, 0x1b,
0x28, 0x94, 0x0f, 0x61, 0xd5, 0xf1, 0x28, 0x43, 0x1e, 0x73, 0x10, 0xc3, 0xdd, 0x01, 0xf6, 0x5d, 0x69, 0x29, 0x1e, 0xc0, 0xaa, 0x17, 0x50, 0x86, 0x02, 0xe6, 0x21, 0x86, 0x7b, 0x03, 0x1c, 0xfa,
0x87, 0x52, 0x87, 0x78, 0x4a, 0xbe, 0x26, 0x35, 0xca, 0xdb, 0xeb, 0xcd, 0xa9, 0x1e, 0x35, 0x77, 0x1e, 0xa5, 0x1e, 0x09, 0xa4, 0x6a, 0x4b, 0x68, 0x2f, 0x6c, 0xad, 0x69, 0x13, 0x3d, 0xd2, 0xb6,
0x4c, 0x13, 0x53, 0xda, 0x21, 0xde, 0x91, 0x63, 0x1b, 0x2b, 0x09, 0x8a, 0xe7, 0x31, 0x43, 0xfd, 0x6d, 0x1b, 0x53, 0xaa, 0x93, 0xe0, 0xd0, 0x73, 0xcd, 0x95, 0x1c, 0xc5, 0xb3, 0x8c, 0x41, 0x7d,
0x09, 0x2c, 0x27, 0xab, 0x35, 0x30, 0x1d, 0x10, 0x8f, 0x62, 0x79, 0x1d, 0x8a, 0xbc, 0xa6, 0xae, 0x0c, 0xcb, 0xf9, 0x69, 0x4d, 0x4c, 0x07, 0x24, 0xa0, 0x58, 0x5c, 0x83, 0xb9, 0x68, 0xa6, 0x9e,
0x63, 0x89, 0xb2, 0x73, 0x6d, 0x18, 0x5d, 0x54, 0x0b, 0x1c, 0xb2, 0xb7, 0x6b, 0x14, 0xf8, 0xd6, 0xe7, 0xf0, 0xb1, 0x2b, 0x5d, 0x18, 0x9d, 0x37, 0x6b, 0x11, 0x64, 0x77, 0xc7, 0xac, 0x45, 0x5b,
0x9e, 0x55, 0xff, 0x29, 0xc1, 0xaa, 0x4e, 0xed, 0xbd, 0x31, 0x73, 0x87, 0x78, 0xcc, 0x47, 0x26, 0xbb, 0x8e, 0xfa, 0x43, 0x80, 0x55, 0x83, 0xba, 0xbb, 0x97, 0xcc, 0x3a, 0x09, 0x58, 0x88, 0x6c,
0x4b, 0x75, 0x6d, 0x19, 0xf2, 0xc8, 0x72, 0x1d, 0x4f, 0x98, 0x55, 0x32, 0x82, 0x20, 0xa9, 0x96, 0x56, 0xe8, 0xda, 0x32, 0x54, 0x91, 0xe3, 0x7b, 0x01, 0x37, 0xab, 0x6e, 0xc6, 0x45, 0x5e, 0xad,
0x4d, 0x53, 0xe3, 0xa9, 0x7d, 0xd4, 0xc3, 0xfd, 0xd0, 0x9e, 0x20, 0x90, 0xd7, 0x60, 0xc1, 0xf1, 0x5c, 0xa4, 0x16, 0xb5, 0xf6, 0x91, 0x85, 0xfb, 0x89, 0x3d, 0x71, 0x21, 0x2e, 0x41, 0xd9, 0xa7,
0x1c, 0xd6, 0x75, 0xa9, 0x2d, 0xec, 0xa8, 0x18, 0x45, 0x1e, 0xeb, 0xd4, 0x96, 0x11, 0xe4, 0x8f, 0x2e, 0x77, 0xa2, 0x61, 0x46, 0x4b, 0x11, 0x41, 0xf5, 0x70, 0x18, 0x38, 0x54, 0xaa, 0xb5, 0xca,
0x86, 0x9e, 0x45, 0x95, 0x42, 0x2d, 0xdb, 0x28, 0x6f, 0xaf, 0x35, 0x83, 0x9e, 0x69, 0xf2, 0x9e, 0xed, 0x85, 0xad, 0xeb, 0x5a, 0x1c, 0x15, 0x2d, 0x8a, 0x4a, 0xe6, 0x8d, 0x4e, 0xbc, 0xa0, 0xbb,
0x89, 0x4d, 0xea, 0x10, 0xc7, 0x6b, 0x6f, 0x9e, 0x5d, 0x54, 0x33, 0x9f, 0xbe, 0x56, 0x1b, 0xb6, 0x71, 0x7a, 0xde, 0x2c, 0x7d, 0xfc, 0xd2, 0x6c, 0xbb, 0x1e, 0x7b, 0x35, 0xb4, 0x34, 0x9b, 0xf8,
0xc3, 0x5e, 0x0f, 0x7b, 0x4d, 0x93, 0xb8, 0xad, 0xb0, 0xc1, 0x82, 0xbf, 0x0d, 0x6a, 0xbd, 0x09, 0x9d, 0x24, 0x57, 0xf1, 0xcf, 0x3a, 0x75, 0x5e, 0x27, 0xe9, 0x88, 0x1a, 0xa8, 0x19, 0x33, 0xab,
0xdb, 0x84, 0x27, 0x50, 0x23, 0x60, 0xae, 0x3f, 0x03, 0x6d, 0xba, 0x01, 0xb1, 0x91, 0x0a, 0x14, 0x4f, 0x41, 0x99, 0x3c, 0x77, 0xe6, 0x9f, 0x04, 0x73, 0xc8, 0x71, 0x42, 0x4c, 0x69, 0x62, 0x40,
0x91, 0x65, 0xf9, 0x98, 0xd2, 0xd0, 0x89, 0x28, 0x94, 0x65, 0xc8, 0x59, 0x88, 0xa1, 0xa0, 0x6d, 0x5a, 0x8a, 0x22, 0x54, 0x1c, 0xc4, 0x50, 0x9c, 0x16, 0x93, 0xaf, 0xd5, 0x4f, 0x02, 0x88, 0x06,
0x0c, 0xb1, 0xae, 0x7f, 0x96, 0x40, 0xd6, 0xa9, 0xfd, 0xf4, 0x04, 0x9b, 0xc3, 0x39, 0xdc, 0x54, 0x75, 0x9f, 0x1c, 0x63, 0x7b, 0x38, 0x83, 0x89, 0x32, 0xcc, 0xdb, 0x09, 0x26, 0xf1, 0x31, 0xab,
0x61, 0xc1, 0x0c, 0x31, 0xa1, 0xa1, 0x71, 0x2c, 0x2f, 0x41, 0x96, 0x7b, 0x92, 0x15, 0xec, 0x7c, 0x53, 0x3f, 0xca, 0x13, 0xfc, 0xa8, 0xfe, 0x35, 0x3f, 0x36, 0x40, 0xfe, 0xf5, 0xf8, 0x99, 0x17,
0x39, 0xf6, 0x23, 0xff, 0xcf, 0xfc, 0xd8, 0x04, 0xf5, 0xf7, 0xe3, 0xc7, 0x5e, 0x44, 0x15, 0x4b, 0xe9, 0xc4, 0x42, 0x6e, 0xe2, 0x77, 0x7c, 0x60, 0xc3, 0x73, 0x43, 0xf4, 0x87, 0x03, 0xcf, 0x94,
0x89, 0x8a, 0x3f, 0x04, 0x15, 0xeb, 0x8e, 0xed, 0xa3, 0xbf, 0xac, 0x78, 0xae, 0x2e, 0xaa, 0x42, 0x9d, 0xc4, 0x95, 0x4a, 0xe6, 0x4a, 0x72, 0xe4, 0xb1, 0x03, 0x4c, 0x3d, 0x32, 0x82, 0x45, 0x83,
0xd9, 0x0d, 0xb4, 0x44, 0xcb, 0xe4, 0xc4, 0x51, 0x20, 0xfc, 0xa4, 0x53, 0x3b, 0x2c, 0x61, 0xe2, 0xba, 0xcf, 0x07, 0x0e, 0x62, 0x78, 0x9b, 0xc7, 0xb6, 0xe8, 0xb8, 0x37, 0xa0, 0x1e, 0xe0, 0xa3,
0x3c, 0x33, 0x4b, 0x40, 0xb0, 0xa8, 0x53, 0xfb, 0xc5, 0xc0, 0x42, 0x0c, 0xef, 0x88, 0x7e, 0x4e, 0x5e, 0x3e, 0xe8, 0xf3, 0x01, 0x3e, 0x8a, 0x9b, 0xf2, 0xb3, 0x94, 0xaf, 0xce, 0xa2, 0x4a, 0xfc,
0x3b, 0xfd, 0x4d, 0x28, 0x79, 0xf8, 0xb8, 0x9b, 0xbc, 0x01, 0x0b, 0x1e, 0x3e, 0x0e, 0x92, 0x92, 0x7d, 0xca, 0x49, 0xa4, 0x07, 0x52, 0x75, 0xf8, 0xd7, 0xa0, 0xae, 0xde, 0xc7, 0x28, 0x9c, 0xae,
0xa5, 0x65, 0xaf, 0x96, 0x56, 0x57, 0xc4, 0x45, 0x4b, 0x48, 0x44, 0x07, 0xaa, 0x77, 0xe0, 0x7f, 0x3d, 0x8d, 0xfe, 0x1a, 0xac, 0x5c, 0x21, 0x49, 0xd9, 0xb7, 0xde, 0x57, 0xa1, 0x6c, 0x50, 0x57,
0x9d, 0xda, 0x9d, 0x3e, 0x46, 0xfe, 0x6c, 0xed, 0x59, 0xf4, 0x37, 0x60, 0xe5, 0x0a, 0x49, 0xc4, 0x7c, 0x01, 0xf5, 0xcb, 0x8b, 0xaf, 0xe8, 0x5a, 0xc9, 0xdf, 0x17, 0xf2, 0xbd, 0x19, 0x40, 0x99,
0xbe, 0xfd, 0x3e, 0x0f, 0x59, 0x7e, 0x95, 0x5e, 0x42, 0x69, 0x3c, 0x11, 0xd3, 0xe6, 0x4d, 0x72, 0xab, 0x6f, 0xe1, 0xff, 0x49, 0x77, 0xc5, 0x7a, 0x31, 0xc7, 0x04, 0xb8, 0xfc, 0xf0, 0xb7, 0xe0,
0x90, 0xa8, 0xf7, 0xe7, 0x00, 0xc5, 0xae, 0xbe, 0x83, 0xeb, 0xd3, 0x86, 0xc8, 0x46, 0x3a, 0xc7, 0x99, 0x38, 0x81, 0xff, 0xc6, 0xdf, 0xaf, 0xbb, 0xc5, 0x4c, 0x63, 0x50, 0x79, 0x73, 0x66, 0x68,
0x14, 0xb8, 0xfa, 0xe8, 0x8f, 0xe0, 0xb1, 0x38, 0x81, 0x6b, 0x93, 0xf7, 0xed, 0x5e, 0x3a, 0xd3, 0x5e, 0x70, 0x3c, 0xdf, 0x53, 0x04, 0xc7, 0xa0, 0xd3, 0x04, 0x8b, 0x42, 0x6b, 0xc3, 0x42, 0x3e,
0x04, 0x54, 0xdd, 0x9a, 0x1b, 0x9a, 0x14, 0x9c, 0x6c, 0xf7, 0x19, 0x82, 0x13, 0xd0, 0x59, 0x82, 0x9d, 0xb7, 0x8b, 0x19, 0x72, 0x30, 0x79, 0x7d, 0x26, 0x58, 0x26, 0xf2, 0x12, 0x20, 0x97, 0xc2,
0x69, 0x4d, 0x6b, 0x42, 0x39, 0xd9, 0x9d, 0x77, 0xd2, 0x19, 0x12, 0x30, 0x75, 0x63, 0x2e, 0x58, 0x5b, 0xc5, 0xcd, 0x97, 0x28, 0xf9, 0xfe, 0x2c, 0xa8, 0x54, 0xa1, 0xbb, 0x73, 0xfa, 0x4d, 0x29,
0x2c, 0xf2, 0x0a, 0x20, 0xd1, 0x85, 0xb7, 0xd3, 0x93, 0xc7, 0x28, 0xf5, 0xc1, 0x3c, 0xa8, 0x48, 0x9d, 0x8e, 0x14, 0xe1, 0x6c, 0xa4, 0x08, 0x5f, 0x47, 0x8a, 0xf0, 0xe1, 0x42, 0x29, 0x9d, 0x5d,
0xa1, 0xbd, 0x7b, 0xf6, 0x5d, 0xcb, 0x9c, 0x8d, 0x34, 0xe9, 0x7c, 0xa4, 0x49, 0xdf, 0x46, 0x9a, 0x28, 0xa5, 0xcf, 0x17, 0x4a, 0xe9, 0xe0, 0x4e, 0xee, 0x6e, 0xd2, 0x09, 0xf5, 0xf7, 0xd3, 0xaf,
0xf4, 0xf1, 0x52, 0xcb, 0x9c, 0x5f, 0x6a, 0x99, 0x2f, 0x97, 0x5a, 0xe6, 0xf0, 0x6e, 0x62, 0x56, 0xb9, 0xd3, 0x39, 0x8e, 0xbf, 0xea, 0xfc, 0x7e, 0xb2, 0x6a, 0xfc, 0x73, 0xfe, 0xe0, 0x67, 0x00,
0x75, 0x08, 0x75, 0x0f, 0xa2, 0x67, 0xde, 0x6a, 0x9d, 0x04, 0xcf, 0xbd, 0x98, 0x57, 0xbd, 0x82, 0x00, 0x00, 0xff, 0xff, 0xfb, 0xb3, 0x1e, 0xb6, 0x60, 0x08, 0x00, 0x00,
0x78, 0xe7, 0x1f, 0xfe, 0x0a, 0x00, 0x00, 0xff, 0xff, 0x89, 0xfd, 0x57, 0xdd, 0x79, 0x08, 0x00,
0x00,
} }
// Reference imports to suppress errors if they are not otherwise used. // Reference imports to suppress errors if they are not otherwise used.
@@ -1003,10 +1001,10 @@ func (m *MsgInstantiateContract) MarshalToSizedBuffer(dAtA []byte) (int, error)
dAtA[i] = 0x32 dAtA[i] = 0x32
} }
} }
if len(m.InitMsg) > 0 { if len(m.Msg) > 0 {
i -= len(m.InitMsg) i -= len(m.Msg)
copy(dAtA[i:], m.InitMsg) copy(dAtA[i:], m.Msg)
i = encodeVarintTx(dAtA, i, uint64(len(m.InitMsg))) i = encodeVarintTx(dAtA, i, uint64(len(m.Msg)))
i-- i--
dAtA[i] = 0x2a dAtA[i] = 0x2a
} }
@@ -1184,10 +1182,10 @@ func (m *MsgMigrateContract) MarshalToSizedBuffer(dAtA []byte) (int, error) {
_ = i _ = i
var l int var l int
_ = l _ = l
if len(m.MigrateMsg) > 0 { if len(m.Msg) > 0 {
i -= len(m.MigrateMsg) i -= len(m.Msg)
copy(dAtA[i:], m.MigrateMsg) copy(dAtA[i:], m.Msg)
i = encodeVarintTx(dAtA, i, uint64(len(m.MigrateMsg))) i = encodeVarintTx(dAtA, i, uint64(len(m.Msg)))
i-- i--
dAtA[i] = 0x22 dAtA[i] = 0x22
} }
@@ -1443,7 +1441,7 @@ func (m *MsgInstantiateContract) Size() (n int) {
if l > 0 { if l > 0 {
n += 1 + l + sovTx(uint64(l)) n += 1 + l + sovTx(uint64(l))
} }
l = len(m.InitMsg) l = len(m.Msg)
if l > 0 { if l > 0 {
n += 1 + l + sovTx(uint64(l)) n += 1 + l + sovTx(uint64(l))
} }
@@ -1530,7 +1528,7 @@ func (m *MsgMigrateContract) Size() (n int) {
if m.CodeID != 0 { if m.CodeID != 0 {
n += 1 + sovTx(uint64(m.CodeID)) n += 1 + sovTx(uint64(m.CodeID))
} }
l = len(m.MigrateMsg) l = len(m.Msg)
if l > 0 { if l > 0 {
n += 1 + l + sovTx(uint64(l)) n += 1 + l + sovTx(uint64(l))
} }
@@ -2043,7 +2041,7 @@ func (m *MsgInstantiateContract) Unmarshal(dAtA []byte) error {
iNdEx = postIndex iNdEx = postIndex
case 5: case 5:
if wireType != 2 { if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field InitMsg", wireType) return fmt.Errorf("proto: wrong wireType = %d for field Msg", wireType)
} }
var byteLen int var byteLen int
for shift := uint(0); ; shift += 7 { for shift := uint(0); ; shift += 7 {
@@ -2070,9 +2068,9 @@ func (m *MsgInstantiateContract) Unmarshal(dAtA []byte) error {
if postIndex > l { if postIndex > l {
return io.ErrUnexpectedEOF return io.ErrUnexpectedEOF
} }
m.InitMsg = append(m.InitMsg[:0], dAtA[iNdEx:postIndex]...) m.Msg = append(m.Msg[:0], dAtA[iNdEx:postIndex]...)
if m.InitMsg == nil { if m.Msg == nil {
m.InitMsg = []byte{} m.Msg = []byte{}
} }
iNdEx = postIndex iNdEx = postIndex
case 6: case 6:
@@ -2626,7 +2624,7 @@ func (m *MsgMigrateContract) Unmarshal(dAtA []byte) error {
} }
case 4: case 4:
if wireType != 2 { if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field MigrateMsg", wireType) return fmt.Errorf("proto: wrong wireType = %d for field Msg", wireType)
} }
var byteLen int var byteLen int
for shift := uint(0); ; shift += 7 { for shift := uint(0); ; shift += 7 {
@@ -2653,9 +2651,9 @@ func (m *MsgMigrateContract) Unmarshal(dAtA []byte) error {
if postIndex > l { if postIndex > l {
return io.ErrUnexpectedEOF return io.ErrUnexpectedEOF
} }
m.MigrateMsg = append(m.MigrateMsg[:0], dAtA[iNdEx:postIndex]...) m.Msg = append(m.Msg[:0], dAtA[iNdEx:postIndex]...)
if m.MigrateMsg == nil { if m.Msg == nil {
m.MigrateMsg = []byte{} m.Msg = []byte{}
} }
iNdEx = postIndex iNdEx = postIndex
default: default: