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

Change LiquidityNetInDirection return type to sdk math #8509

Merged
merged 2 commits into from
Jul 17, 2024
Merged

Conversation

mattverse
Copy link
Member

Closes: #8469

What is the purpose of the change

Changes return value for pool.GetLiquidity, as it was returning osmomath.LegacyDec thus was not able to be unmarshalled when being returned as result for the query.

Testing and Verifying

This change is a trivial rework / code cleanup without any test coverage.

Documentation and Release Note

  • Does this pull request introduce a new feature or user-facing behavior changes?
  • Changelog entry added to Unreleased section of CHANGELOG.md?

Where is the change documented?

  • Specification (x/{module}/README.md)
  • Osmosis documentation site
  • Code comments?
  • N/A

@mattverse mattverse added the V:state/breaking State machine breaking PR label Jul 15, 2024
Copy link
Contributor

coderabbitai bot commented Jul 15, 2024

Walkthrough

The recent modifications focus on addressing type inconsistencies and potential panics in the osmosis-labs/osmosis project. Notably, the return type of the LiquidityNetInDirection function has been changed to sdk math, and the GetLiquidity method in the ConcentratedPoolExtension interface now returns sdkmath.LegacyDec. These changes aim to harmonize the types used throughout the codebase and prevent runtime errors.

Changes

File Path Change Summary
CHANGELOG.md Updated to reflect the change in return type for LiquidityNetInDirection to sdk math
x/concentrated-liquidity/types/cl_pool_extensionI.go Modified GetLiquidity method return type from osmomath.Dec to sdkmath.LegacyDec and added import

Sequence Diagram(s)

The conceptual change involves the modification of return types, which doesn't significantly alter the control flow or introduce new features. Therefore, no sequence diagrams are provided.

Assessment against linked issues

Objective Addressed Explanation
Fix panics in LiquidityNetInDirection due to type mismatches (#8469)
Ensure consistency in return types across the ConcentratedPoolExtension interface (#8469)

These changes address the objectives, ensuring type consistency and preventing runtime panics due to type mismatches.


Recent review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 71a31bc and fe30958.

Files selected for processing (2)
  • CHANGELOG.md (1 hunks)
  • x/concentrated-liquidity/types/cl_pool_extensionI.go (2 hunks)
Additional comments not posted (2)
x/concentrated-liquidity/types/cl_pool_extensionI.go (1)

6-6: Import statement for sdkmath is correct.

The import statement for sdkmath from cosmossdk.io/math is necessary for the changes made to the GetLiquidity method.

CHANGELOG.md (1)

50-50: Changelog entry looks good!

The entry clearly states the change made to the LiquidityNetInDirection return type to sdk math and references the relevant PR.


Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

Share
Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai generate interesting stats about this repository and render them as a table.
    • @coderabbitai show all the console.log statements in this repository.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (invoked as PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Additionally, you can add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.

CodeRabbit Configration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 0

Outside diff range, codebase verification and nitpick comments (1)
x/concentrated-liquidity/types/cl_pool_extensionI.go (1)

25-25: Update all GetLiquidity method implementations to return sdkmath.LegacyDec.

The following instances of the GetLiquidity method still return osmomath.Dec and need to be updated to sdkmath.LegacyDec:

  • x/concentrated-liquidity/model/pool.go
  • tests/mocks/cl_pool.go

Please update these implementations to ensure consistency across the codebase.

Analysis chain

Update to GetLiquidity method return type is correct.

The return type of the GetLiquidity method has been updated to sdkmath.LegacyDec to prevent panics and ensure proper unmarshalling of the response.

Ensure that all implementations of GetLiquidity are updated accordingly.

Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Verify all implementations of the `GetLiquidity` method are updated to return `sdkmath.LegacyDec`.

# Test: Search for the `GetLiquidity` method implementation. Expect: Only occurances of the new return type.
rg --type go -A 5 $'GetLiquidity() sdkmath.LegacyDec'

Length of output: 54


Script:

#!/bin/bash
# Description: Verify all implementations of the `GetLiquidity` method are updated to return `sdkmath.LegacyDec`.

# Test: Search for the `GetLiquidity` method implementation. Expect: Only occurrences of the new return type.
rg --type go 'GetLiquidity()' -A 5

Length of output: 33231

@PaddyMc PaddyMc merged commit 06359c7 into main Jul 17, 2024
1 check passed
@PaddyMc PaddyMc deleted the mattverse/f branch July 17, 2024 08:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Bug]: LiquidityNetInDirection Panics
3 participants