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

refactor: remove x/exp dep #21281

Merged
merged 10 commits into from
Aug 19, 2024
Merged

refactor: remove x/exp dep #21281

merged 10 commits into from
Aug 19, 2024

Conversation

julienrbrt
Copy link
Member

@julienrbrt julienrbrt commented Aug 13, 2024

Description

Closes: #19892
Finally! Came to hate that package because it has bitten us.
We can finally break freeeee.

Blocked on #21280


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

  • New Features

    • Enhanced key sorting mechanisms throughout the application using the slices package for improved performance and clarity.
    • Introduced streamlined handling of dependencies, optimizing the management of indirect dependencies without impacting core functionality.
  • Bug Fixes

    • Improved error handling and processing in various modules, ensuring efficient operation when hooks or dependencies are missing.
  • Refactor

    • Removed deprecated methods and simplified logic in event management and version migration processes to enhance readability and maintenance.
    • Updated iteration methods for improved efficiency in code execution.
    • Enhanced key processing in the NewModuleManager function to sort module keys prior to further operations.
    • Adjusted gRPC server method key processing for better compatibility with slice operations.
  • Style

    • Standardized import statements to utilize the standard library's slices package instead of external dependencies, enhancing clarity in the codebase.

@julienrbrt julienrbrt added the S:blocked Status: Blocked label Aug 13, 2024
Copy link
Contributor

coderabbitai bot commented Aug 13, 2024

Walkthrough

Walkthrough

The recent changes primarily focus on optimizing the Go codebase by replacing the golang.org/x/exp packages with their standard library counterparts, particularly shifting from experimental slices and maps to stable versions. This transition enhances code readability, maintainability, and performance while addressing concerns about the reliability of experimental packages. Modifications include streamlined sorting of map keys and refined dependency management in the go.mod files.

Changes

Files Change Summary
baseapp/..., runtime/v2/..., server/v2/..., store/v2/... Replaced usages of golang.org/x/exp/slices and golang.org/x/exp/maps with standard library equivalents, improving efficiency and reducing dependency on experimental packages.
go.mod files across multiple modules Removed direct dependencies on golang.org/x/exp and reintroduced them as indirect dependencies, indicating a strategic shift in dependency management.
tests/systemtests/..., tools/confix/..., x/... Enhanced scripts and test files to ensure no direct dependencies on experimental packages are present, reflecting stricter dependency management.

Assessment against linked issues

Objective Addressed Explanation
Replace x/exp/slices by standard slices (Issue #19892)
Replace x/exp/maps by standard maps (Issue #19892) Some methods in maps remain unchanged pending Go 1.23.
Avoid usage of x/exp for stability (Issue #19892)

Possibly related issues


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 Configuration 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.

@julienrbrt julienrbrt changed the title Julien/exp refactor: remove x/exp dep Aug 13, 2024
@julienrbrt julienrbrt added the backport/v0.52.x PR scheduled for inclusion in the v0.52's next stable release label Aug 13, 2024
Base automatically changed from julien/go-123 to main August 15, 2024 08:47
types/module/module.go Fixed Show fixed Hide fixed
@julienrbrt julienrbrt marked this pull request as ready for review August 16, 2024 10:40
@julienrbrt julienrbrt requested a review from a team as a code owner August 16, 2024 10:40
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)
scripts/dep-assert.sh (1)

Dependencies on golang.org/x/exp Found in go.mod Files

The verification indicates that several go.mod files in the x/ directory still have dependencies on golang.org/x/exp. This confirms that the check for x/exp dependencies is effective and identifies these dependencies accurately.

  • Files with golang.org/x/exp dependency:
    • x/accounts/defaults/lockup/go.mod
    • x/accounts/defaults/multisig/go.mod
    • x/accounts/go.mod
    • x/auth/go.mod
    • x/authz/go.mod
    • x/bank/go.mod
    • x/circuit/go.mod
    • x/consensus/go.mod
    • x/distribution/go.mod
    • x/epochs/go.mod
    • x/evidence/go.mod
    • x/feegrant/go.mod
    • x/gov/go.mod
    • x/group/go.mod
    • x/mint/go.mod
    • x/nft/go.mod
    • x/params/go.mod
    • x/protocolpool/go.mod
    • x/slashing/go.mod
    • x/staking/go.mod
    • x/tx/go.mod
    • x/upgrade/go.mod

Please review these dependencies to assess if they need to be updated or removed.

Analysis chain

Line range hint 25-42:
Verify the effectiveness of the x/exp dependency check.

The script now checks for golang.org/x/exp dependencies in the x/ directory. Ensure that this check correctly identifies any remaining dependencies on x/exp.

Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Verify that the script correctly identifies dependencies on `golang.org/x/exp`.

# Test: Run the script and check for any output indicating `x/exp` dependencies. Expect: No output.
./scripts/dep-assert.sh

Length of output: 6353


Script:

#!/bin/bash
# Find all go.mod files in the x/ directory and check for dependencies on golang.org/x/exp
fd --type f --name 'go.mod' x/ --exec grep -H 'golang.org/x/exp' {}

Length of output: 318


Script:

#!/bin/bash
# Find all go.mod files in the x/ directory and check for dependencies on golang.org/x/exp
fd 'go.mod' x/ | xargs grep -H 'golang.org/x/exp'

Length of output: 1875

Review details

Configuration used: .coderabbit.yml
Review profile: CHILL

Commits

Files that changed from the base of the PR and between e2ec889 and cb7dfa5.

Files selected for processing (36)
  • baseapp/baseapp.go (3 hunks)
  • go.mod (2 hunks)
  • runtime/v2/app.go (1 hunks)
  • runtime/v2/go.mod (2 hunks)
  • runtime/v2/manager.go (2 hunks)
  • scripts/dep-assert.sh (2 hunks)
  • server/v2/api/grpc/server.go (2 hunks)
  • server/v2/go.mod (2 hunks)
  • server/v2/stf/core_event_service.go (3 hunks)
  • server/v2/stf/go.mod (1 hunks)
  • store/v2/commitment/store.go (2 hunks)
  • store/v2/go.mod (2 hunks)
  • tests/systemtests/cli.go (1 hunks)
  • tests/systemtests/go.mod (2 hunks)
  • tests/systemtests/system.go (3 hunks)
  • tools/confix/cmd/diff.go (2 hunks)
  • tools/confix/cmd/migrate.go (2 hunks)
  • tools/confix/go.mod (2 hunks)
  • types/events.go (2 hunks)
  • types/module/module.go (2 hunks)
  • x/auth/ante/unorderedtx/manager.go (2 hunks)
  • x/auth/go.mod (2 hunks)
  • x/bank/depinject.go (2 hunks)
  • x/bank/go.mod (1 hunks)
  • x/epochs/depinject.go (2 hunks)
  • x/epochs/go.mod (1 hunks)
  • x/epochs/keeper/abci_test.go (2 hunks)
  • x/feegrant/module/depinject.go (2 hunks)
  • x/feegrant/module/module.go (2 hunks)
  • x/genutil/client/cli/migrate.go (2 hunks)
  • x/gov/depinject.go (2 hunks)
  • x/gov/go.mod (2 hunks)
  • x/group/go.mod (2 hunks)
  • x/group/keeper/invariants.go (2 hunks)
  • x/staking/depinject.go (3 hunks)
  • x/staking/go.mod (2 hunks)
Files skipped from review due to trivial changes (17)
  • go.mod
  • runtime/v2/app.go
  • runtime/v2/go.mod
  • server/v2/go.mod
  • server/v2/stf/go.mod
  • store/v2/go.mod
  • tests/systemtests/cli.go
  • tests/systemtests/go.mod
  • tests/systemtests/system.go
  • tools/confix/go.mod
  • types/events.go
  • x/auth/go.mod
  • x/bank/go.mod
  • x/epochs/go.mod
  • x/gov/go.mod
  • x/group/go.mod
  • x/staking/go.mod
Additional context used
Path-based instructions (18)
x/feegrant/module/depinject.go (1)

Pattern **/*.go: Review the Golang code for conformity with the Uber Golang style guide, highlighting any deviations.

x/epochs/depinject.go (1)

Pattern **/*.go: Review the Golang code for conformity with the Uber Golang style guide, highlighting any deviations.

server/v2/stf/core_event_service.go (1)

Pattern **/*.go: Review the Golang code for conformity with the Uber Golang style guide, highlighting any deviations.

tools/confix/cmd/diff.go (1)

Pattern **/*.go: Review the Golang code for conformity with the Uber Golang style guide, highlighting any deviations.

tools/confix/cmd/migrate.go (1)

Pattern **/*.go: Review the Golang code for conformity with the Uber Golang style guide, highlighting any deviations.

x/bank/depinject.go (1)

Pattern **/*.go: Review the Golang code for conformity with the Uber Golang style guide, highlighting any deviations.

x/gov/depinject.go (1)

Pattern **/*.go: Review the Golang code for conformity with the Uber Golang style guide, highlighting any deviations.

x/group/keeper/invariants.go (1)

Pattern **/*.go: Review the Golang code for conformity with the Uber Golang style guide, highlighting any deviations.

x/staking/depinject.go (1)

Pattern **/*.go: Review the Golang code for conformity with the Uber Golang style guide, highlighting any deviations.

x/genutil/client/cli/migrate.go (1)

Pattern **/*.go: Review the Golang code for conformity with the Uber Golang style guide, highlighting any deviations.

server/v2/api/grpc/server.go (1)

Pattern **/*.go: Review the Golang code for conformity with the Uber Golang style guide, highlighting any deviations.

x/feegrant/module/module.go (1)

Pattern **/*.go: Review the Golang code for conformity with the Uber Golang style guide, highlighting any deviations.

x/auth/ante/unorderedtx/manager.go (1)

Pattern **/*.go: Review the Golang code for conformity with the Uber Golang style guide, highlighting any deviations.

x/epochs/keeper/abci_test.go (2)

Pattern **/*.go: Review the Golang code for conformity with the Uber Golang style guide, highlighting any deviations.


Pattern **/*_test.go: "Assess the unit test code assessing sufficient code coverage for the changes associated in the pull request"

store/v2/commitment/store.go (1)

Pattern **/*.go: Review the Golang code for conformity with the Uber Golang style guide, highlighting any deviations.

runtime/v2/manager.go (1)

Pattern **/*.go: Review the Golang code for conformity with the Uber Golang style guide, highlighting any deviations.

types/module/module.go (1)

Pattern **/*.go: Review the Golang code for conformity with the Uber Golang style guide, highlighting any deviations.

baseapp/baseapp.go (1)

Pattern **/*.go: Review the Golang code for conformity with the Uber Golang style guide, highlighting any deviations.

Additional comments not posted (23)
x/feegrant/module/depinject.go (1)

Line range hint 1-1:
Verify the impact of removing simulation-related functions.

The removal of GenerateGenesisState, RegisterStoreDecoder, and WeightedOperations from the AppModule might affect simulation scenarios. Ensure that these functionalities are no longer required or have been implemented elsewhere.

Verification successful

No impact from removing simulation-related functions in x/feegrant module.

The functions GenerateGenesisState, RegisterStoreDecoder, and WeightedOperations were removed from the x/feegrant/module/depinject.go file. There are no other references to these functions within the x/feegrant module, indicating that their removal does not impact the module's functionality. Other modules still contain these functions, suggesting that their simulation-related functionalities are module-specific.

Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Check for references to removed simulation-related functions in the codebase.

# Test: Search for references to the removed functions. Expect: No references found.
rg --type go $'GenerateGenesisState|RegisterStoreDecoder|WeightedOperations'

Length of output: 19707

x/epochs/depinject.go (1)

5-6: Verify the correctness of the new sorting implementation.

The use of slices.Sorted(maps.Keys(hooks)) simplifies the sorting process. Ensure that this change maintains the intended functionality of sorting module names lexically.

Also applies to: 58-60

server/v2/stf/core_event_service.go (2)

7-7: Use of standard library maps is appropriate.

The import of the standard library maps is a good change, aligning with the goal of removing dependencies on experimental packages.


67-67: Efficient key sorting with slices.Sorted(maps.Keys(attrMap)).

The use of slices.Sorted(maps.Keys(attrMap)) efficiently combines key retrieval and sorting, enhancing both readability and performance.

tools/confix/cmd/diff.go (1)

47-47: Improved key handling with slices.Collect(maps.Keys(confix.Migrations)).

The change to use slices.Collect(maps.Keys(confix.Migrations)) simplifies the collection and formatting of map keys, enhancing clarity and efficiency in error messages.

tools/confix/cmd/migrate.go (1)

64-64: Consistent and efficient key handling with slices.Collect(maps.Keys(confix.Migrations)).

Using slices.Collect(maps.Keys(confix.Migrations)) maintains consistency across the codebase and improves the handling of map keys in error messages.

x/bank/depinject.go (1)

106-106: Verify the use of slices.Collect for map keys.

The use of slices.Collect(maps.Keys(restrictions)) is a functional approach to collect keys from the map. Ensure that this does not introduce unnecessary overhead or alter the intended logic.

x/gov/depinject.go (1)

123-123: Verify the use of slices.Sorted for sorting module names.

The use of slices.Sorted(maps.Keys(govHooks)) simplifies the sorting process. Ensure that this change maintains the intended order and does not introduce inefficiencies.

Verification successful

Use of slices.Sorted is appropriate and consistent.

The use of slices.Sorted(maps.Keys(govHooks)) in InvokeSetHooks is consistent across the codebase and aligns with the intended lexical ordering of module names. This change simplifies the sorting process without introducing inefficiencies. No further action is needed.

Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Verify that the use of `slices.Sorted` correctly sorts module names and maintains the intended order.

# Test: Search for the function usage. Expect: Correct sorting of module names without performance degradation.
rg --type go -A 5 $'InvokeSetHooks'

Length of output: 1129


Script:

#!/bin/bash
# Search for the usage of `slices.Sorted` in the repository to verify its implementation.
rg --type go 'slices.Sorted'

Length of output: 882

x/group/keeper/invariants.go (1)

60-67: Verify the custom sorting logic with slices.SortFunc.

The use of slices.SortFunc with a custom comparator for sorting group IDs is explicit and clear. Ensure that the comparator is correctly implemented and efficient.

Verification successful

Custom sorting logic is correctly implemented and efficient.

The custom comparator used in slices.SortFunc for sorting group IDs is correctly implemented. It efficiently sorts the IDs by comparing them directly and returning appropriate values for sorting. No issues were found with the logic or efficiency of this implementation.

Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Verify that the custom sorting logic implemented using `slices.SortFunc` is correct and efficient.

# Test: Check for the implementation of the custom comparator. Expect: Correct and efficient sorting of group IDs.
rg --type go -A 5 $'GroupTotalWeightInvariantHelper'

Length of output: 1178


Script:

#!/bin/bash
# Extract the full implementation of the GroupTotalWeightInvariantHelper function to verify the sorting logic.
ast-grep --lang go --pattern 'func GroupTotalWeightInvariantHelper($_, $_, $_, $_) { $$$ }'

Length of output: 93


Script:

#!/bin/bash
# Use rg to search for the GroupTotalWeightInvariantHelper function definition and include additional lines for full context.
rg --type go -A 50 'func GroupTotalWeightInvariantHelper' 

Length of output: 3082

x/staking/depinject.go (2)

95-97: Efficient early return for empty hooks.

The addition of an early return when stakingHooks is empty improves efficiency by avoiding unnecessary processing.


99-99: Use of slices.Collect for key collection.

The transition to slices.Collect(maps.Keys(stakingHooks)) is a good step towards using standard library features, aligning with the PR objectives to remove x/exp dependencies.

x/genutil/client/cli/migrate.go (1)

55-55: Simplified sorting with slices.Sorted.

The use of slices.Sorted to sort version keys is a concise and efficient replacement for traditional sorting methods, enhancing readability.

server/v2/api/grpc/server.go (1)

69-69: Improved key collection with slices.Collect.

The update to use slices.Collect(maps.Keys(methodsMap)) enhances the processing of method keys for gRPC reflection, aligning with the removal of x/exp dependencies.

x/feegrant/module/module.go (3)

160-163: LGTM!

The GenerateGenesisState method correctly utilizes simulation.RandomizedGenState to create a randomized genesis state.


165-168: LGTM!

The RegisterStoreDecoder method correctly registers a store decoder for the feegrant module's types.


170-175: LGTM!

The WeightedOperations method accurately aggregates operations with their respective weights for the feegrant module.

x/auth/ante/unorderedtx/manager.go (1)

164-164: LGTM!

The use of slices.SortedFunc simplifies the sorting logic and is a suitable replacement for sort.Slice.

x/epochs/keeper/abci_test.go (1)

92-99: LGTM!

The updated sorting logic in TestEpochInfoBeginBlockChanges correctly handles ordering based on timestamps, ensuring robust test scenarios.

store/v2/commitment/store.go (1)

114-114: Good use of slices.Sorted for sorting keys.

The use of slices.Sorted(maps.Keys(c.multiTrees)) improves readability and conciseness by combining key extraction and sorting into a single step. This change aligns with modern Go idioms.

runtime/v2/manager.go (1)

45-45: Effective use of slices.Collect for key collection.

The use of slices.Collect(maps.Keys(modules)) efficiently handles the collection of module keys, potentially improving performance and readability.

types/module/module.go (1)

836-836: Enhanced flexibility with slices.Collect for module names.

The use of slices.Collect(maps.Keys(m.Modules)) allows for additional operations on the returned slice, enhancing flexibility and potential performance.

baseapp/baseapp.go (2)

7-9: Imports update approved.

The change to use maps and slices from the standard library instead of x/exp is appropriate and aligns with the PR objectives.


343-346: Optimized sorting with slices.Sorted approved.

The use of slices.Sorted(maps.Keys(keys)) streamlines the sorting process, enhancing performance by reducing function calls.

Ensure that the usage of slices.Sorted is consistent with the expected behavior and that it correctly replaces the previous sorting mechanism.

Verification successful

Consistent use of slices.Sorted verified across the codebase.

The implementation of slices.Sorted in baseapp/baseapp.go is consistent with its usage in other parts of the codebase, confirming the adoption of this function for sorting operations. This change appears to be part of a broader optimization effort.

  • baseapp/baseapp.go: Usage of slices.Sorted(maps.Keys(keys)) aligns with the pattern across the codebase.
Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Verify the usage of `slices.Sorted` in the codebase.

# Test: Search for the usage of `slices.Sorted`. Expect: Correct usage replacing previous sorting mechanisms.
rg --type go 'slices.Sorted'

Length of output: 882

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

Review details

Configuration used: .coderabbit.yml
Review profile: CHILL

Commits

Files that changed from the base of the PR and between cb7dfa5 and 942d088.

Files selected for processing (1)
  • tests/systemtests/system.go (4 hunks)
Files skipped from review as they are similar to previous changes (1)
  • tests/systemtests/system.go

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

Review details

Configuration used: .coderabbit.yml
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 942d088 and 28d56b0.

Files selected for processing (2)
  • runtime/v2/app.go (1 hunks)
  • runtime/v2/manager.go (2 hunks)
Files skipped from review due to trivial changes (1)
  • runtime/v2/manager.go
Files skipped from review as they are similar to previous changes (1)
  • runtime/v2/app.go

runtime/v2/manager.go 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.

Actionable comments posted: 0

Review details

Configuration used: .coderabbit.yml
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 28d56b0 and 1bae7ea.

Files selected for processing (1)
  • runtime/v2/manager.go (2 hunks)
Files skipped from review as they are similar to previous changes (1)
  • runtime/v2/manager.go

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

Review details

Configuration used: .coderabbit.yml
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 1bae7ea and a584e39.

Files ignored due to path filters (1)
  • store/v2/go.sum is excluded by !**/*.sum
Files selected for processing (12)
  • go.mod (2 hunks)
  • runtime/v2/go.mod (2 hunks)
  • server/v2/go.mod (2 hunks)
  • store/v2/go.mod (2 hunks)
  • tests/systemtests/go.mod (2 hunks)
  • tools/confix/go.mod (2 hunks)
  • x/auth/go.mod (2 hunks)
  • x/bank/go.mod (1 hunks)
  • x/epochs/go.mod (1 hunks)
  • x/gov/go.mod (2 hunks)
  • x/group/go.mod (2 hunks)
  • x/staking/go.mod (2 hunks)
Files skipped from review due to trivial changes (3)
  • go.mod
  • runtime/v2/go.mod
  • x/staking/go.mod
Files skipped from review as they are similar to previous changes (9)
  • server/v2/go.mod
  • store/v2/go.mod
  • tests/systemtests/go.mod
  • tools/confix/go.mod
  • x/auth/go.mod
  • x/bank/go.mod
  • x/epochs/go.mod
  • x/gov/go.mod
  • x/group/go.mod

@julienrbrt julienrbrt added this pull request to the merge queue Aug 19, 2024
Merged via the queue into main with commit 6f30de3 Aug 19, 2024
85 checks passed
@julienrbrt julienrbrt deleted the julien/exp branch August 19, 2024 13:19
mergify bot pushed a commit that referenced this pull request Aug 19, 2024
(cherry picked from commit 6f30de3)

# Conflicts:
#	runtime/v2/app.go
#	runtime/v2/go.mod
#	runtime/v2/manager.go
#	server/v2/api/grpc/server.go
#	server/v2/go.mod
#	server/v2/stf/core_event_service.go
#	server/v2/stf/go.mod
#	store/v2/commitment/store.go
#	store/v2/go.mod
#	store/v2/go.sum
#	tests/systemtests/go.mod
#	tools/confix/go.mod
#	x/staking/go.mod
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.

Remove x/exp import
4 participants