[][src]Type Definition cosmwasm_std::InitResult

type InitResult<U = Empty> = Result<InitResponse<U>, StdError>;
👎 Deprecated since 0.12.1:

InitResult is deprecated because it uses StdError, which should be replaced with custom errors in CosmWasm 0.11+. Replace this with Result<InitResponse, StdError> or Result<InitResponse<U>, StdError> and consider migrating to custom errors from there.