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

Problem: ethermint is outdated #1363

Merged
merged 2 commits into from
Mar 26, 2024
Merged

Conversation

mmsqe
Copy link
Collaborator

@mmsqe mmsqe commented Mar 26, 2024

👮🏻👮🏻👮🏻 !!!! REFERENCE THE PROBLEM YOUR ARE SOLVING IN THE PR TITLE AND DESCRIBE YOUR SOLUTION HERE !!!! DO NOT FORGET !!!! 👮🏻👮🏻👮🏻

PR Checklist:

  • Have you read the CONTRIBUTING.md?
  • Does your PR follow the C4 patch requirements?
  • Have you rebased your work on top of the latest master?
  • Have you checked your code compiles? (make)
  • Have you included tests for any non-trivial functionality?
  • Have you checked your code passes the unit tests? (make test)
  • Have you checked your code formatting is correct? (go fmt)
  • Have you checked your basic code style is fine? (golangci-lint run)
  • If you added any dependencies, have you checked they do not contain any known vulnerabilities? (go list -json -m all | nancy sleuth)
  • If your changes affect the client infrastructure, have you run the integration test?
  • If your changes affect public APIs, does your PR follow the C4 evolution of public contracts?
  • If your code changes public APIs, have you incremented the crate version numbers and documented your changes in the CHANGELOG.md?
  • If you are contributing for the first time, please read the agreement in CONTRIBUTING.md now and add a comment to this pull request stating that your PR is in accordance with the Developer's Certificate of Origin.

Thank you for your code, it's appreciated! :)

Summary by CodeRabbit

  • Bug Fixes
    • Fixed an issue causing a panic on overflow and patched the gasUsed attribute in the RPC API for improved stability.

Copy link
Contributor

coderabbitai bot commented Mar 26, 2024

Walkthrough

The changes in version v1.1.1 focus on resolving critical issues for stability and functionality. Specifically, a bug leading to system panics due to overflow was fixed, and improvements were made to the gasUsed field in the ethermint RPC API. These updates are crucial for enhancing system reliability and performance.

Changes

Files Affected Change Summary
Various Fixed overflow bug and enhanced gasUsed in RPC API
app/app.go, app/encoding.go, cmd/cronosd/cmd/root.go Updated parameter types and configurations

🐰✨
In the realm of code and mint,
A rabbit danced with a hint.
"Fix the panic, patch the gas,
Build a future that will last.
With each fix, with every hop,
We craft a robust, shining crop."
🌟🚀🐇

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-tests 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 tests 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 tests.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.

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 a review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @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.
  • The JSON schema for the configuration file is available here.
  • 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/coderabbit-overrides.v2.json

CodeRabbit Discord Community

Join our Discord Community to get help, request features, and share feedback.

@mmsqe mmsqe marked this pull request as ready for review March 26, 2024 01:42
@mmsqe mmsqe requested a review from a team as a code owner March 26, 2024 01:42
@mmsqe mmsqe requested review from yihuang and leejw51crypto and removed request for a team March 26, 2024 01:42
go.mod Show resolved Hide resolved
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.

Review Status

Actionable comments generated: 0

Configuration used: CodeRabbit UI

Commits Files that changed from the base of the PR and between 148b61b and 28b5724.
Files ignored due to path filters (3)
  • go.mod is excluded by: !**/*.mod
  • go.sum is excluded by: !**/*.sum
  • gomod2nix.toml is excluded by: !**/*.toml
Files selected for processing (1)
  • CHANGELOG.md (1 hunks)
Files not reviewed due to errors (1)
  • CHANGELOG.md (Error: unable to parse review)

Copy link

codecov bot commented Mar 26, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 36.71%. Comparing base (10b8eeb) to head (07fec75).

Additional details and impacted files

Impacted file tree graph

@@           Coverage Diff           @@
##             main    #1363   +/-   ##
=======================================
  Coverage   36.71%   36.71%           
=======================================
  Files         108      108           
  Lines        9642     9642           
=======================================
  Hits         3540     3540           
  Misses       5753     5753           
  Partials      349      349           
Files Coverage Δ
app/encoding.go 100.00% <100.00%> (ø)

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.

Review Status

Actionable comments generated: 1

Configuration used: CodeRabbit UI

Commits Files that changed from the base of the PR and between 148b61b and 9d59448.
Files ignored due to path filters (3)
  • go.mod is excluded by: !**/*.mod
  • go.sum is excluded by: !**/*.sum
  • gomod2nix.toml is excluded by: !**/*.toml
Files selected for processing (4)
  • CHANGELOG.md (1 hunks)
  • app/app.go (2 hunks)
  • app/encoding.go (1 hunks)
  • cmd/cronosd/cmd/root.go (4 hunks)
Additional comments: 6
app/encoding.go (1)
  • 9-9: The change in the return type of MakeEncodingConfig to ethermint.EncodingConfig aligns with the PR's objective to update Ethermint. Ensure that all integrations and usages of this function are updated to handle the new return type correctly.
cmd/cronosd/cmd/root.go (3)
  • 58-58: The update to the return type of NewRootCmd to ethermint.EncodingConfig is consistent with the PR's objective. Ensure that all integrations and usages of this function are updated to handle the new return type correctly.
  • 112-112: The update to the parameter type of initRootCmd to ethermint.EncodingConfig is consistent with the PR's objective. Ensure that all integrations and usages of this function are updated to handle the new parameter type correctly.
  • 237-237: The update to the field type of encCfg in the appCreator struct to ethermint.EncodingConfig is consistent with the PR's objective. Ensure that all integrations and usages of this struct are updated to handle the new field type correctly.
app/app.go (2)
  • 12-17: > 📝 NOTE

This review was outside the diff hunks and was mapped to the diff hunk with the greatest overlap. Original lines [1-377]

Ensure that the removal of the appparams import does not lead to unresolved references elsewhere in the codebase. This change should be part of a broader refactoring to use ethermint for encoding configurations.

Verification successful

The removal of the appparams import from app/app.go does not affect the references found in x/cronos/simulation/operations.go and x/cronos/migrations/v2/migrate_test.go. These references are for simulation and testing purposes and use a different import path (cosmossdk.io/simapp/params), indicating that they are unrelated to the main application configuration changes. Therefore, the initial review comment stands, with the recommendation to ensure that the removal of appparams does not lead to unresolved references or a loss of functionality in the context of the main application configuration.

Scripts Executed

The following scripts were executed for the analysis:


Script:

#!/bin/bash
# Search for any remaining references to `appparams` that might be unresolved.
rg "appparams"

Length of output: 366

* 375-375: The `encodingConfig` parameter type in the `New` function has been changed from `appparams.EncodingConfig` to `ethermint.EncodingConfig`. Verify that all callers of this function have been updated to use the new type and ensure that `ethermint.EncodingConfig` provides all necessary functionalities previously covered by `appparams.EncodingConfig`.

CHANGELOG.md Outdated Show resolved Hide resolved
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.

Review Status

Actionable comments generated: 0

Configuration used: CodeRabbit UI

Commits Files that changed from the base of the PR and between 10b8eeb and 90c3005.
Files ignored due to path filters (3)
  • go.mod is excluded by: !**/*.mod
  • go.sum is excluded by: !**/*.sum
  • gomod2nix.toml is excluded by: !**/*.toml
Files selected for processing (4)
  • CHANGELOG.md (1 hunks)
  • app/app.go (2 hunks)
  • app/encoding.go (1 hunks)
  • cmd/cronosd/cmd/root.go (4 hunks)
Files skipped from review as they are similar to previous changes (3)
  • app/app.go
  • app/encoding.go
  • cmd/cronosd/cmd/root.go
Additional comments: 1
CHANGELOG.md (1)
  • 13-13: Consider capitalizing "ethermint" to "Ethermint" for consistency throughout the document.

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.

Review Status

Actionable comments generated: 0

Configuration used: CodeRabbit UI

Commits Files that changed from the base of the PR and between 90c3005 and 07fec75.
Files selected for processing (1)
  • CHANGELOG.md (1 hunks)
Files not reviewed due to errors (1)
  • (no review received)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants