Skip to content

Commit

Permalink
chore: fix pool factory migration to 1.2.0 condition
Browse files Browse the repository at this point in the history
  • Loading branch information
kerber0x committed Jan 24, 2024
1 parent a5528e5 commit dafbe86
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ pub fn migrate(mut deps: DepsMut, _env: Env, _msg: MigrateMsg) -> Result<Respons
migrations::migrate_to_v110(deps.branch())?;
}
#[cfg(not(feature = "osmosis"))]
if storage_version <= Version::parse("1.2.0")? {
if storage_version < Version::parse("1.2.0")? {
migrations::migrate_to_v120(deps.branch())?;
}

Expand Down

0 comments on commit dafbe86

Please sign in to comment.