We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e156b77 commit c59fc93Copy full SHA for c59fc93
cosmwasm/cw20-base/src/contract.rs
@@ -1,5 +1,3 @@
1
-use std::num::NonZeroU32;
2
-
3
use cosmwasm_schema::cw_serde;
4
#[cfg(not(feature = "library"))]
5
use cosmwasm_std::entry_point;
@@ -642,12 +640,10 @@ pub struct MigrateMsg {}
642
640
643
641
#[cfg_attr(not(feature = "library"), entry_point)]
644
pub fn migrate(
645
- mut deps: DepsMut,
+ deps: DepsMut,
646
env: Env,
647
msg: UpgradeMsg<InstantiateMsg, MigrateMsg>,
648
) -> Result<Response, ContractError> {
649
- frissitheto::init_state_version(&mut deps, const { NonZeroU32::new(1).unwrap() }).unwrap();
650
651
msg.run(
652
deps,
653
|deps, init_msg| {
0 commit comments