Skip to content

Commit 34d6dae

Browse files
authored
Remove version check (#851)
1 parent 4964ceb commit 34d6dae

File tree

1 file changed

+0
-1
lines changed
  • smart-contracts/osmosis/contracts/cl-vault/src

1 file changed

+0
-1
lines changed

smart-contracts/osmosis/contracts/cl-vault/src/contract.rs

-1
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,6 @@ pub fn reply(deps: DepsMut, env: Env, msg: Reply) -> Result<Response, ContractEr
201201

202202
#[cfg_attr(not(feature = "library"), entry_point)]
203203
pub fn migrate(deps: DepsMut, _env: Env, msg: MigrateMsg) -> Result<Response, ContractError> {
204-
cw2::assert_contract_version(deps.storage, CONTRACT_NAME, "0.3.0")?;
205204
let previous_version =
206205
cw2::ensure_from_older_version(deps.storage, CONTRACT_NAME, CONTRACT_VERSION)?;
207206
let dex_router_item: Item<Addr> = Item::new("dex_router");

0 commit comments

Comments
 (0)