[][src]Type Definition cosmwasm_std::MigrateResult

type MigrateResult<U = Empty> = Result<MigrateResponse<U>, StdError>;
👎 Deprecated since 0.12.1:

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