Remove contract string list, add address info to by code id, filter out init_msg in list
This commit is contained in:
@@ -19,7 +19,6 @@ const (
|
||||
MaxWasmSize = types.MaxWasmSize
|
||||
GasMultiplier = keeper.GasMultiplier
|
||||
MaxGas = keeper.MaxGas
|
||||
QueryListContracts = keeper.QueryListContracts
|
||||
QueryGetContract = keeper.QueryGetContract
|
||||
QueryGetContractState = keeper.QueryGetContractState
|
||||
QueryGetCode = keeper.QueryGetCode
|
||||
@@ -68,17 +67,18 @@ var (
|
||||
)
|
||||
|
||||
type (
|
||||
GenesisState = types.GenesisState
|
||||
Code = types.Code
|
||||
Contract = types.Contract
|
||||
MsgStoreCode = types.MsgStoreCode
|
||||
MsgInstantiateContract = types.MsgInstantiateContract
|
||||
MsgExecuteContract = types.MsgExecuteContract
|
||||
Model = types.Model
|
||||
CodeInfo = types.CodeInfo
|
||||
ContractInfo = types.ContractInfo
|
||||
WasmConfig = types.WasmConfig
|
||||
Keeper = keeper.Keeper
|
||||
GetCodeResponse = keeper.GetCodeResponse
|
||||
ListCodeResponse = keeper.ListCodeResponse
|
||||
GenesisState = types.GenesisState
|
||||
Code = types.Code
|
||||
Contract = types.Contract
|
||||
MsgStoreCode = types.MsgStoreCode
|
||||
MsgInstantiateContract = types.MsgInstantiateContract
|
||||
MsgExecuteContract = types.MsgExecuteContract
|
||||
Model = types.Model
|
||||
CodeInfo = types.CodeInfo
|
||||
ContractInfo = types.ContractInfo
|
||||
ContractInfoWithAddress = types.ContractInfoWithAddress
|
||||
WasmConfig = types.WasmConfig
|
||||
Keeper = keeper.Keeper
|
||||
GetCodeResponse = keeper.GetCodeResponse
|
||||
ListCodeResponse = keeper.ListCodeResponse
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user