-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
style!: enforcing clippy::pedantic and clippy::nursery (#24)
* style: comply with clippy::pedantic * style!: added clippy::nursery and deny warnings * imp(e2e): bumped wasmd to 0.45.0 * ci: trying to add dependency caching * deps: bump crate version to 0.3.0 * deps: Cargo.lock updated * imp: fixed test * fix(testing/owner): fix linter issues after breaking api changes * style: ran 'cargo fmt' * fix: fixed incorrect reversion
- Loading branch information
Showing
23 changed files
with
232 additions
and
130 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
//! Contains the key constants' definitions for the ibc module. | ||
/// Version defines the current version for interchain accounts module | ||
/// `ICA_VERSION` defines the current version for interchain accounts module | ||
pub const ICA_VERSION: &str = "ics27-1"; | ||
|
||
/// HOST_PORT_ID is the default port id that the interchain accounts host submodule binds to | ||
/// `HOST_PORT_ID` is the default port id that the interchain accounts host submodule binds to | ||
pub const HOST_PORT_ID: &str = "icahost"; |
Oops, something went wrong.