Skip to content

Commit

Permalink
Update Neutron version running in CI to v4.1.0 (#4133)
Browse files Browse the repository at this point in the history
* Update Nix flake to use branch with Neutron v4.1.0

* Add changelog entry

* Set Neutron as chain with dynamic fees in tests
  • Loading branch information
ljoss17 authored Aug 7, 2024
1 parent 845cc21 commit f4b5f18
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- Update the version of Neutron running the integration tests in the CI from `v3.0.5`
to `v4.1.0` ([\#4122](https://github.com/informalsystems/hermes/issues/4122))
14 changes: 7 additions & 7 deletions flake.lock

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

4 changes: 3 additions & 1 deletion tools/test-framework/src/chain/chain_type.rs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,9 @@ impl FromStr for ChainType {

fn from_str(s: &str) -> Result<Self, Self::Err> {
match s {
name if name.contains("gaiad") => Ok(ChainType::Cosmos { dynamic_fee: true }),
name if name.contains("gaiad") || name.contains("neutrond") => {
Ok(ChainType::Cosmos { dynamic_fee: true })
}
name if name.contains("evmosd") => Ok(ChainType::Evmos),
name if name.contains("injectived") => Ok(ChainType::Injective),
name if name.contains("provenanced") => Ok(ChainType::Provenance),
Expand Down

0 comments on commit f4b5f18

Please sign in to comment.