Skip to content

Commit c59fc93

Browse files
committed
chore(zkgm): remove temporary cw20-base migration
1 parent e156b77 commit c59fc93

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

cosmwasm/cw20-base/src/contract.rs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
use std::num::NonZeroU32;
2-
31
use cosmwasm_schema::cw_serde;
42
#[cfg(not(feature = "library"))]
53
use cosmwasm_std::entry_point;
@@ -642,12 +640,10 @@ pub struct MigrateMsg {}
642640

643641
#[cfg_attr(not(feature = "library"), entry_point)]
644642
pub fn migrate(
645-
mut deps: DepsMut,
643+
deps: DepsMut,
646644
env: Env,
647645
msg: UpgradeMsg<InstantiateMsg, MigrateMsg>,
648646
) -> Result<Response, ContractError> {
649-
frissitheto::init_state_version(&mut deps, const { NonZeroU32::new(1).unwrap() }).unwrap();
650-
651647
msg.run(
652648
deps,
653649
|deps, init_msg| {

0 commit comments

Comments
 (0)