Skip to content

Commit

Permalink
bump PCL pair version
Browse files Browse the repository at this point in the history
  • Loading branch information
epanchee committed Sep 28, 2023
1 parent e81b62b commit 75a9ee7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion contracts/pair_concentrated/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "astroport-pair-concentrated"
version = "1.2.5"
version = "1.2.6"
authors = ["Astroport"]
edition = "2021"
description = "The Astroport concentrated liquidity pair"
Expand Down
2 changes: 1 addition & 1 deletion contracts/pair_concentrated/src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -907,7 +907,7 @@ pub fn migrate(deps: DepsMut, _env: Env, _msg: MigrateMsg) -> Result<Response, C
"astroport-pair-concentrated" => match contract_version.version.as_ref() {
"1.0.0" | "1.1.0" | "1.1.1" | "1.1.2" => migrate_config(deps.storage)?,
"1.1.4" => migrate_config_from_v140(deps.storage)?,
"1.2.0" | "1.2.1" | "1.2.2" | "1.2.4" => {}
"1.2.0" | "1.2.1" | "1.2.2" | "1.2.4" | "1.2.5" => {}
_ => return Err(ContractError::MigrationError {}),
},
_ => return Err(ContractError::MigrationError {}),
Expand Down

0 comments on commit 75a9ee7

Please sign in to comment.