Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Extend quierier test #210

Merged
merged 17 commits into from
Mar 22, 2024
Merged
Show file tree
Hide file tree
Changes from 15 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/Basic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.72.0
toolchain: 1.73.0
target: wasm32-unknown-unknown
override: true

Expand All @@ -41,7 +41,7 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: unit-test
toolchain: 1.72.0
toolchain: 1.73.0
args: --locked
env:
RUST_BACKTRACE: 1
Expand All @@ -65,20 +65,20 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.72.0
toolchain: 1.73.0
override: true
components: rustfmt, clippy

- name: Run cargo fmt
uses: actions-rs/cargo@v1
with:
command: fmt
toolchain: 1.72.0
toolchain: 1.73.0
args: --all -- --check

- name: Run cargo clippy
uses: actions-rs/cargo@v1
with:
command: clippy
toolchain: 1.72.0
toolchain: 1.73.0
args: -- -D warnings
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Change Log

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased] - yyyy-mm-dd

### Added

### Changed


## [Unreleased] - 2024-03-18

### Added
- Tests queries (injective-cosmwasm-mock) covering functionality of querier.rs

### Fixed
- Exchange aggregate volume query to use the correct parsing.

### Removed
- Grants related queries.
- Exchange denom decimal query.
Copy link

@coderabbitai coderabbitai bot Mar 18, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The "Unreleased" section appears twice with different dates (yyyy-mm-dd and 2024-03-18). It seems like a duplication error. Consider merging these sections under a single "Unreleased" header to maintain clarity and avoid confusion about the changes made.

-## [Unreleased] - yyyy-mm-dd
-### Added
-### Changed
-
 ## [Unreleased] - 2024-03-18

Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation.

Suggested change
## [Unreleased] - yyyy-mm-dd
### Added
### Changed
## [Unreleased] - 2024-03-18
### Added
- Tests queries (injective-cosmwasm-mock) covering functionality of querier.rs
### Fixed
- Exchange aggregate volume query to use the correct parsing.
### Removed
- Grants related queries.
- Exchange denom decimal query.
## [Unreleased] - 2024-03-18
### Added
- Tests queries (injective-cosmwasm-mock) covering functionality of querier.rs
### Fixed
- Exchange aggregate volume query to use the correct parsing.
### Removed
- Grants related queries.
- Exchange denom decimal query.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Seems like the humans are having a chat. I'll hop back into my burrow for now. If you need me again, just tag @coderabbitai in a new comment, and I'll come hopping out!

Loading
Loading