Skip to content

Commit

Permalink
Merge branch 'main' into ci/add-neutron-chain
Browse files Browse the repository at this point in the history
  • Loading branch information
kerber0x authored Jun 27, 2024
2 parents 3c3d40e + db07889 commit 0ae28f4
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 23 deletions.
40 changes: 20 additions & 20 deletions 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ prost = { version = "0.11.9", default-features = false, features = [
prost-types = { version = "0.11.9", default-features = false }
# for local development
#white-whale-std = { path = "packages/white-whale-std" }
white-whale-std = { version = "1.1.4" }
white-whale-std = { version = "1.1.5" }
white-whale-testing = { path = "./packages/white-whale-testing" }
cw-multi-test = { version = "0.16.5" }
uint = "0.9.5"
Expand Down
2 changes: 1 addition & 1 deletion packages/white-whale-std/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "white-whale-std"
version = "1.1.4"
version = "1.1.5"
edition.workspace = true
authors = [
"Kerber0x <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion packages/white-whale-std/src/pool_network/asset.rs
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ pub fn has_factory_token(assets: &[AssetInfo]) -> bool {
}

/// Verifies if the given denom is an ibc token or not
fn is_ibc_token(denom: &str) -> bool {
pub fn is_ibc_token(denom: &str) -> bool {
let split: Vec<&str> = denom.splitn(2, '/').collect();

if split[0] == IBC_PREFIX && split.len() == 2 {
Expand Down

0 comments on commit 0ae28f4

Please sign in to comment.