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

feat(store): migrate db backends to store/db and remove the cosmos-db deps completely #21765

Merged
merged 8 commits into from
Sep 23, 2024

Conversation

cool-develope
Copy link
Contributor

@cool-develope cool-develope commented Sep 16, 2024

Description


Author Checklist

All items are required. Please add a note to the item if the item is not applicable and
please add links to any relevant follow up issues.

I have...

  • included the correct type prefix in the PR title, you can find examples of the prefixes below:
  • confirmed ! in the type prefix if API or client breaking change
  • targeted the correct branch (see PR Targeting)
  • provided a link to the relevant issue or specification
  • reviewed "Files changed" and left comments if necessary
  • included the necessary unit and integration tests
  • added a changelog entry to CHANGELOG.md
  • updated the relevant documentation or specification, including comments for documenting Go code
  • confirmed all CI checks have passed

Reviewers Checklist

All items are required. Please add a note if the item is not applicable and please add
your handle next to the items reviewed if you only reviewed selected items.

Please see Pull Request Reviewer section in the contributing guide for more information on how to review a pull request.

I have...

  • confirmed the correct type prefix in the PR title
  • confirmed all author checklist items have been addressed
  • reviewed state machine logic, API design and naming, documentation is accurate, tests and test coverage

Summary by CodeRabbit

Release Notes

  • New Features

    • Introduced a new database management module supporting multiple database types.
    • Added implementations for GoLevelDB, enhancing key-value data management.
  • Improvements

    • Updated import paths for database management to enhance module structure.
    • Enhanced function signatures for better compatibility with new database types.
    • Improved type conversion and data handling capabilities.
  • Dependency Management

    • Updated versions of dependencies to align with the new database management framework.
    • Removed outdated dependencies related to the previous database package.

Copy link
Contributor

@cool-develope your pull request is missing a changelog!

Copy link
Contributor

coderabbitai bot commented Sep 16, 2024

Walkthrough

Walkthrough

The changes encompass a transition from the github.com/cosmos/cosmos-db package to the cosmossdk.io/store/db package across multiple files in the Cosmos SDK codebase. This includes updates to import statements, function signatures, and the removal of obsolete dependencies in various modules. Additionally, new database management implementations have been introduced, enhancing the overall database handling capabilities within the SDK.

Changes

Files Change Summary
client/pruning/main.go, client/snapshot/restore.go Updated import path for dbm from github.com/cosmos/cosmos-db to cosmossdk.io/store/db and changed the openDB function signature to use dbm.DBType instead of dbm.BackendType.
go.mod, simapp/go.mod, simapp/v2/go.mod, tests/go.mod, x/accounts/go.mod, x/authz/go.mod, x/bank/go.mod, x/gov/go.mod, x/mint/go.mod, x/staking/go.mod, x/upgrade/go.mod Removed dependency on github.com/cosmos/cosmos-db from the go.mod files, indicating that the project no longer uses this package.
orm/go.mod, orm/internal/testkv/leveldb.go, orm/internal/testkv/mem.go, orm/model/ormdb/module_test.go, orm/model/ormtable/bench_test.go, orm/model/ormtable/table_test.go, server/constructors_test.go, server/mock/app.go, server/start.go, server/util.go, server/util_test.go Updated import paths and function signatures to reflect the new dbm package structure and replaced instances of dbm.NewMemDB() with coretesting.NewMemDB().
store/db/goleveldb.go, store/db/pebbledb.go, store/db/rocksdb.go, store/go.mod Introduced new files for database implementations (GoLevelDB, PebbleDB, RocksDB) and added corresponding test suites, along with new dependencies in the go.mod file.

Possibly related PRs

Suggested labels

C:x/auth, backport/v0.52.x

Suggested reviewers

  • kocubinski
  • julienrbrt
  • tac0turtle
  • auricom
  • sontrinh16
  • testinginprod

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>, please review it.
    -- 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 gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    -- @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 using 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.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

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 and nitpick comments (3)
runtime/v2/go.mod (1)

Line range hint 1-89: Consider running a dependency check and updating outdated dependencies.

While the go.mod file uses specific versions or commit hashes for dependencies, which is good for reproducibility, it's important to regularly update dependencies to include security patches and bug fixes. Some dependencies might be outdated or have known vulnerabilities.

Consider running a dependency check tool like go list -u -m all or using a service like Dependabot to identify and update outdated dependencies. Pay special attention to dependencies with known security vulnerabilities.

You can use the following command to check for outdated dependencies:

#!/bin/bash
# Description: Check for outdated dependencies and potential vulnerabilities

# Test: List outdated dependencies
go list -u -m all | grep '\['

# Test: Check for known vulnerabilities (requires govulncheck tool)
which govulncheck && govulncheck ./... || echo "govulncheck not found. Install with: go install golang.org/x/vuln/cmd/govulncheck@latest"

Review the output and update dependencies as necessary, ensuring compatibility with your project.

x/accounts/defaults/lockup/go.mod (1)

Line range hint 1-165: Consider dependency management and module coupling

While reviewing the entire go.mod file, I noticed:

  1. This module has a large number of dependencies, which might indicate a complex module with many integrations.
  2. There's extensive use of replace directives, suggesting tight coupling with other parts of the Cosmos SDK.

Consider the following recommendations:

  1. Evaluate if all these dependencies are necessary. Could some be consolidated or removed to simplify the module?
  2. Assess the need for so many replace directives. While they're sometimes necessary for development, they can make versioning and releases more challenging.
  3. Consider creating a separate document or comments explaining the rationale behind each replace directive to aid future maintenance.

These suggestions aim to improve maintainability and reduce potential version conflicts in the long term.

x/epochs/go.mod (1)

Line range hint 1-224: Consider future cleanup of replace directives and TODO comments

While not directly related to the current changes, I noticed that the go.mod file contains multiple replace directives and a TODO comment. These are often used during development but can lead to dependency management issues if not properly maintained.

Consider the following suggestions for future improvements:

  1. Review and potentially remove unnecessary replace directives, especially those pointing to local paths.
  2. Address the TODO comment: "TODO remove post spinning out all modules". This suggests that some cleanup or refactoring might be planned. It would be beneficial to create a tracking issue for this task if one doesn't already exist.
  3. Regularly review and update dependencies to their latest stable versions to ensure security and performance improvements.

These suggestions aim to improve the long-term maintainability and clarity of the module's dependency management.

Review details

Configuration used: .coderabbit.yml
Review profile: CHILL

Commits

Files that changed from the base of the PR and between f117d52 and 276a8b1.

Files ignored due to path filters (33)
  • client/v2/go.sum is excluded by !**/*.sum
  • collections/go.sum is excluded by !**/*.sum
  • go.sum is excluded by !**/*.sum
  • orm/go.sum is excluded by !**/*.sum
  • runtime/v2/go.sum is excluded by !**/*.sum
  • server/v2/cometbft/go.sum is excluded by !**/*.sum
  • server/v2/go.sum is excluded by !**/*.sum
  • simapp/go.sum is excluded by !**/*.sum
  • simapp/v2/go.sum is excluded by !**/*.sum
  • store/go.sum is excluded by !**/*.sum
  • store/v2/go.sum is excluded by !**/*.sum
  • tests/go.sum is excluded by !**/*.sum
  • x/accounts/defaults/base/go.sum is excluded by !**/*.sum
  • x/accounts/defaults/lockup/go.sum is excluded by !**/*.sum
  • x/accounts/defaults/multisig/go.sum is excluded by !**/*.sum
  • x/accounts/go.sum is excluded by !**/*.sum
  • x/authz/go.sum is excluded by !**/*.sum
  • x/bank/go.sum is excluded by !**/*.sum
  • x/circuit/go.sum is excluded by !**/*.sum
  • x/consensus/go.sum is excluded by !**/*.sum
  • x/distribution/go.sum is excluded by !**/*.sum
  • x/epochs/go.sum is excluded by !**/*.sum
  • x/evidence/go.sum is excluded by !**/*.sum
  • x/feegrant/go.sum is excluded by !**/*.sum
  • x/gov/go.sum is excluded by !**/*.sum
  • x/group/go.sum is excluded by !**/*.sum
  • x/mint/go.sum is excluded by !**/*.sum
  • x/nft/go.sum is excluded by !**/*.sum
  • x/params/go.sum is excluded by !**/*.sum
  • x/protocolpool/go.sum is excluded by !**/*.sum
  • x/slashing/go.sum is excluded by !**/*.sum
  • x/staking/go.sum is excluded by !**/*.sum
  • x/upgrade/go.sum is excluded by !**/*.sum
Files selected for processing (33)
  • client/v2/go.mod (1 hunks)
  • collections/go.mod (1 hunks)
  • go.mod (1 hunks)
  • orm/go.mod (4 hunks)
  • runtime/v2/go.mod (1 hunks)
  • server/v2/cometbft/go.mod (1 hunks)
  • server/v2/go.mod (1 hunks)
  • simapp/go.mod (2 hunks)
  • simapp/v2/go.mod (2 hunks)
  • store/go.mod (2 hunks)
  • store/v2/go.mod (1 hunks)
  • tests/go.mod (2 hunks)
  • x/accounts/defaults/base/go.mod (1 hunks)
  • x/accounts/defaults/lockup/go.mod (1 hunks)
  • x/accounts/defaults/multisig/go.mod (1 hunks)
  • x/accounts/go.mod (2 hunks)
  • x/authz/go.mod (1 hunks)
  • x/bank/go.mod (1 hunks)
  • x/circuit/go.mod (1 hunks)
  • x/consensus/go.mod (1 hunks)
  • x/distribution/go.mod (1 hunks)
  • x/epochs/go.mod (1 hunks)
  • x/evidence/go.mod (1 hunks)
  • x/feegrant/go.mod (1 hunks)
  • x/gov/go.mod (2 hunks)
  • x/group/go.mod (1 hunks)
  • x/mint/go.mod (2 hunks)
  • x/nft/go.mod (1 hunks)
  • x/params/go.mod (1 hunks)
  • x/protocolpool/go.mod (1 hunks)
  • x/slashing/go.mod (1 hunks)
  • x/staking/go.mod (2 hunks)
  • x/upgrade/go.mod (1 hunks)
Files skipped from review as they are similar to previous changes (20)
  • go.mod
  • orm/go.mod
  • simapp/go.mod
  • simapp/v2/go.mod
  • store/go.mod
  • tests/go.mod
  • x/accounts/defaults/multisig/go.mod
  • x/accounts/go.mod
  • x/authz/go.mod
  • x/bank/go.mod
  • x/circuit/go.mod
  • x/distribution/go.mod
  • x/evidence/go.mod
  • x/feegrant/go.mod
  • x/gov/go.mod
  • x/group/go.mod
  • x/mint/go.mod
  • x/protocolpool/go.mod
  • x/staking/go.mod
  • x/upgrade/go.mod
Additional comments not posted (21)
collections/go.mod (1)

7-7: Approve version update and verify compatibility

The update of cosmossdk.io/core/testing to a specific version (v0.0.0-20240923163230-04da382a9f29) is a good practice. It ensures reproducibility and consistency across different environments.

Please verify that this new version is compatible with the current codebase and doesn't introduce any breaking changes. Run the test suite to ensure everything still works as expected.

Additionally, the AI summary mentions the removal of a replace directive for this module, but this change is not visible in the provided code. Could you clarify if this directive was indeed removed? If so, ensure that this doesn't negatively impact local development workflows.

To verify the module's dependencies and any replace directives, you can run:

store/v2/go.mod (1)

7-7: LGTM! Verify removal of replace directive.

The update of cosmossdk.io/core/testing to a specific commit version (v0.0.0-20240923163230-04da382a9f29) is a positive change, moving from a placeholder version to a concrete one. This aligns with the PR objective of migrating and updating dependencies.

Could you please confirm if the replace directive for cosmossdk.io/core/testing has been removed as mentioned in the AI summary? If so, this change is not visible in the provided code snippet. You can use the following command to check:

If the replace directive has indeed been removed, this further supports the migration away from local development dependencies, which is in line with the PR objectives.

Verification successful

Verified removal of replace directive.

The replace cosmossdk.io/core/testing directive has been successfully removed in store/v2/go.mod, aligning with the migration and dependency update objectives.

Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Check for the presence of a replace directive for cosmossdk.io/core/testing
grep -n "replace cosmossdk.io/core/testing" store/v2/go.mod

Length of output: 61

runtime/v2/go.mod (2)

Line range hint 3-11: Verify the impact of removing the replace directive for cosmossdk.io/core/testing.

The removal of the replace directive for cosmossdk.io/core/testing (as mentioned in the AI summary) means that the module will now use the version specified in the require block instead of a local path. This change could affect the development workflow, especially if developers were relying on local changes in the core/testing module.

Please ensure that:

  1. The specified version in the require block contains all necessary changes that were previously accessed through the local path.
  2. All developers are aware of this change and update their workflows accordingly.
  3. Any CI/CD pipelines that might have depended on the local path are updated.

You can run the following command to check for any remaining usage of the local path:

#!/bin/bash
# Description: Check for any remaining usage of the local path for cosmossdk.io/core/testing

# Test: Search for any remaining references to the local path
rg --type go "cosmossdk.io/core/testing" | grep -v "v0.0.0-20240923163230-04da382a9f29"

If this command returns any results, those files might need to be updated to work with the new setup.


32-32: LGTM! Verify the compatibility of the new version.

The update of cosmossdk.io/core/testing to a specific pseudo-version v0.0.0-20240923163230-04da382a9f29 is a good practice. However, please ensure that this version is compatible with the rest of the project and that it's the intended version for your current development stage.

To verify the compatibility and intention of this version update, you can run:

This script will help you confirm if the version is up-to-date and review the changes introduced in this version.

server/v2/go.mod (1)

17-17: LGTM! Version update and removal of local replace directive.

The update to cosmossdk.io/core/testing and the removal of its local replace directive are good changes. This suggests moving from a local development version to an official release, which is generally a positive step.

To ensure compatibility, please run the following verification script:

This script will verify that the new version can be downloaded, the module can be built, and any tests using the core/testing package still pass.

x/accounts/defaults/lockup/go.mod (1)

20-20: Dependency update and replace directive removal

The update to cosmossdk.io/core/testing and the removal of its replace directive suggest a shift towards using the official version instead of a local path. This change may have the following implications:

  1. It could potentially affect the testing utilities used in this module.
  2. It might be part of a larger effort to standardize dependency management across the Cosmos SDK.

To ensure this change doesn't introduce any breaking changes or inconsistencies, please run the following script:

If any issues are found, please address them before merging this change.

x/params/go.mod (3)

Line range hint 1-1: Summary of changes in x/params/go.mod

The modifications in this file represent a shift in dependency management:

  1. The cosmossdk.io/core/testing module has been updated to a specific timestamped version.
  2. The local replace directive for this module has been removed.

These changes indicate a move towards using published versions of dependencies, which is generally a good practice for improving maintainability and reproducibility of the project. However, it's crucial to ensure that these changes don't introduce any compatibility issues or unintended side effects.

To ensure the changes don't negatively impact the project, please:

  1. Run all tests and CI checks.
  2. Verify that the build process completes successfully.
  3. Check for any warnings or errors related to module resolution.

If any issues arise, consider temporarily reverting to the local replace directive until the published version is fully vetted.


Line range hint 1-1: Verify compatibility after removing local replace directive

The removal of the replace directive for cosmossdk.io/core/testing indicates a shift from using a local development version to a published version. This change can improve reproducibility and version management. However, it's crucial to ensure that the published version (v0.0.0-20240923163230-04da382a9f29) contains all necessary changes and is fully compatible with the current codebase.

Please run the following commands to verify that the change doesn't introduce any issues:


8-8: Approved: Updated cosmossdk.io/core/testing to a specific version

The change from a placeholder version to a specific timestamped version (v0.0.0-20240923163230-04da382a9f29) indicates that the module is now referencing a concrete, externally hosted version rather than a local development version. This change is consistent with the removal of the corresponding replace directive.

To ensure this change doesn't introduce any compatibility issues, please run the following command and verify that all tests pass:

x/consensus/go.mod (2)

9-9: Removal of replace directive for cosmossdk.io/core/testing

The replace directive for cosmossdk.io/core/testing has been removed. This indicates that the module is no longer using a local version of the package and is now relying on the version specified in the require section.

To ensure this change doesn't introduce any issues, please run the following verification script:

#!/bin/bash
# Description: Verify that removing the replace directive doesn't cause any issues.

# Test: Check if there are any unresolved dependencies
go mod verify

# Test: Ensure that the module can be downloaded and used without the replace directive
go mod download cosmossdk.io/core/testing@v0.0.0-20240923163230-04da382a9f29

9-9: Update to a specific version of cosmossdk.io/core/testing

The dependency cosmossdk.io/core/testing has been updated from a placeholder version to a specific timestamped version. This change suggests a move from a local or development version to a more stable, potentially released version.

To ensure this change doesn't introduce any breaking changes or unexpected behavior, please run the following verification script:

x/epochs/go.mod (1)

9-9: Update to cosmossdk.io/core/testing dependency and removal of local replacement

The dependency version for cosmossdk.io/core/testing has been updated from a placeholder version to a specific commit hash (v0.0.0-20240923163230-04da382a9f29). Additionally, the local path replacement for this dependency has been removed.

This change suggests a shift from using a local development version to a more stable, versioned dependency. It's a positive step towards better dependency management and reproducibility.

To ensure this change doesn't introduce any breaking changes or compatibility issues, please run the following verification script:

This script will verify that the module still builds and passes tests with the updated dependency.

x/slashing/go.mod (1)

9-9: Update to cosmossdk.io/core/testing module version

The version of cosmossdk.io/core/testing has been updated from a pseudo-version to a specific timestamped version (v0.0.0-20240923163230-04da382a9f29). This change, along with the removal of the replace directive, indicates a shift from using a local development version to a more stable or recent version of the testing module.

This update aligns with the PR objectives of migrating database backends and removing dependencies, as it suggests a move towards using standardized versions across the project.

To ensure this change doesn't introduce any compatibility issues, please run the following command to check for any breaking changes or deprecations in the new version:

This script uses the GitHub CLI to fetch recent commit messages for the core/testing directory and searches for keywords related to breaking changes or deprecations.

x/nft/go.mod (3)

28-28: Summary of changes in x/nft/go.mod

The changes in this file contribute to the PR objectives of migrating database backends and removing cosmos-db dependencies. The update to a specific version of cosmossdk.io/core/testing and the removal of the replace directive indicate a move towards more standardized dependency management. These changes should improve maintainability and align with the overall goals of the pull request.


28-28: Removal of replace directive for cosmossdk.io/core/testing

The replace directive for cosmossdk.io/core/testing has been removed. This change indicates a shift from using a local development path to a published version of the package.

To ensure that the package is correctly resolved without the replace directive, please run:

#!/bin/bash
# Verify package resolution
go list -m cosmossdk.io/core/testing

28-28: Version update for cosmossdk.io/core/testing

The dependency cosmossdk.io/core/testing has been updated from a placeholder version to a specific timestamped version. This change suggests a move towards more precise dependency management.

To ensure compatibility with other dependencies, please run the following command:

Verification successful

Dependency Update Verified

The cosmossdk.io/core/testing dependency has been successfully updated to v0.0.0-20240923163230-04da382a9f29, and the replace directive has been removed. No issues found.

Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Verify compatibility of the updated dependency
go mod tidy
go mod verify

Length of output: 190


Script:

#!/bin/bash
# Check the version of cosmossdk.io/core/testing in go.mod
rg 'cosmossdk\.io/core/testing\s+v0\.0\.0-20240923163230-04da382a9f29' x/nft/go.mod

# Ensure there are no replace directives for cosmossdk.io/core/testing in go.mod
rg '^replace\s+cosmossdk\.io/core/testing' x/nft/go.mod

Length of output: 217

client/v2/go.mod (3)

Line range hint 1-189: Summary of changes in go.mod

The changes in this file are minimal and focused on dependency management:

  1. A new indirect dependency on cosmossdk.io/core/testing has been added.
  2. There's a potential removal of a local replacement for cosmossdk.io/core/testing (needs clarification).

These changes seem to align with the PR objectives of migrating database backends and removing cosmos-db dependencies, although the direct impact on these objectives is not immediately clear from this file alone. The addition of the new testing dependency might be related to updates in the testing infrastructure to support the migration process.

To ensure these changes don't introduce any unintended consequences, please run:

#!/bin/bash
# Verify that cosmos-db is not being used anymore
rg --type go "github.com/cosmos/cosmos-db" .
# Check for any new usages of the core/testing package
rg --type go "cosmossdk.io/core/testing" .

This will help verify that cosmos-db is indeed being removed and that the new core/testing dependency is being used appropriately.


Line range hint 180-189: Clarification needed on cosmossdk.io/core/testing replacement

The AI summary mentioned the removal of a local path replacement for cosmossdk.io/core/testing, but this change is not visible in the current diff. Could you please clarify if this removal was done in a previous commit or if it's still pending?

To check the current status of replacements, please run:

#!/bin/bash
# Check for any remaining replacements related to core/testing
grep -n "replace.*cosmossdk.io/core/testing" client/v2/go.mod

This will help verify if there are any remaining replacements for cosmossdk.io/core/testing in the go.mod file.


26-26: New indirect dependency added

A new indirect dependency on cosmossdk.io/core/testing has been added with a pre-release version. This might indicate ongoing development or testing.

To ensure this change is intentional and consistent with the PR objectives, please run the following command:

This will help verify if the new dependency is actually being used in the codebase.

Verification successful

Dependency Usage Verified

The new indirect dependency on cosmossdk.io/core/testing is actively used in multiple test files across the codebase.

Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Check if the new dependency is used in the codebase
rg --type go "cosmossdk.io/core/testing" .

Length of output: 8463

server/v2/cometbft/go.mod (1)

44-44: Dependency update looks good, verify compatibility

The update of cosmossdk.io/core/testing to a specific timestamped version (v0.0.0-20240923163230-04da382a9f29) is appropriate. This change aligns with the PR objectives and potentially introduces new features or bug fixes.

To ensure compatibility, please run the following commands:

x/accounts/defaults/base/go.mod (1)

21-21: LGTM: Version update and removal of replace directive

The update to cosmossdk.io/core/testing and the removal of its replace directive are positive changes. This suggests a move towards using an official release rather than a local development version, which aligns with the PR objectives.

To ensure this change doesn't introduce any breaking changes, please run the following command:

This will help identify any potential areas of the codebase that might be affected by the version update.

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

Successfully merging this pull request may close these issues.

5 participants