Skip to content

Commit

Permalink
fix(pcl): add migration from 1.0.1 (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
epanchee authored May 2, 2024
1 parent d98f9dd commit b10ab43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/pair_concentrated/src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -881,7 +881,7 @@ pub fn migrate(deps: DepsMut, _env: Env, _msg: Empty) -> Result<Response, Contra

match contract_version.contract.as_ref() {
"astroport-pcl-osmo" => match contract_version.version.as_ref() {
"1.0.0" => {}
"1.0.0" | "1.0.1" => {}
_ => return Err(ContractError::MigrationError {}),
},
_ => return Err(ContractError::MigrationError {}),
Expand Down

0 comments on commit b10ab43

Please sign in to comment.