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: simapp/v2 #20412

Merged
merged 111 commits into from
Jun 19, 2024
Merged

feat: simapp/v2 #20412

merged 111 commits into from
Jun 19, 2024

Conversation

kocubinski
Copy link
Member

@kocubinski kocubinski commented May 16, 2024

Description

Introduce simapp/v2 which runs on server/v2 infrastructure.

Depends on: #20387
Includes: #20483, #20485
Closes: #20492

Testing

❯ scripts/simapp-v2-init.sh

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

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

    • Introduced methods for setting and retrieving the application version in the App struct.
    • Added functionality to export the application state for a genesis file.
    • New SimGenesisAccount type for simulation accounts in the genesis state.
    • Added command handling functions for initializing, starting, and querying the application.
  • Improvements

    • Enhanced error contexts in error messages for interface registry creation.
    • Renamed methods within ReaderMap and WriterMap interfaces for clarity.
    • Improved handling of zero-length Hash and AppHash fields in the Bytes method of the Info struct.
  • Refactor

    • Refactored WriterMap struct to handle state changes recursively.
    • Updated core_router_service for lazy initialization of the handler and reflection-based message handling.
  • Integration

    • Added new dependencies and module replacements in the go.mod file.
  • Documentation

    • Added a new README highlighting the integration of various runtime, server, and store components.

Copy link
Contributor

coderabbitai bot commented May 16, 2024

Walkthrough

The series of changes across various files and directories encompass substantial updates to the simapp/v2 Cosmos SDK application. Key modifications include adjustments to configuration files for better debug support, refinements in the interface registry provision, Dockerfile updates for new modules, and enhancements in context handling with anonymous structs. Additionally, new methods and refinements in existing methods have been introduced across several modules to improve functionality, handle errors more effectively, and improve the initialization and management of application states and transactions.

Changes

File/Path (shortened) Change Summary
.vscode/launch.json Updated launch configurations for debugging "simapp v2".
codec/depinject.go Added error context in ProvideInterfaceRegistry function.
contrib/images/simd-env/Dockerfile New COPY commands for various modules.
core/context/context.go Converted contextKey type to use anonymous structs.
core/header/service.go Fixed handling of zero-length Hash and AppHash fields in Bytes method.
core/store/store.go Renamed methods within ReaderMap and WriterMap interfaces.
go.work.example Added and removed specific module imports.
runtime/v2/app.go Added methods for setting and retrieving application version in App struct.
runtime/v2/manager.go & module.go Various refactorings and removals, added initialization functions.
scripts/simapp-v2-init.sh Added script for initializing simapp v2 node.
server/mock/tx.go Added new methods to KVStoreTx struct and modified Type() method.
server/v2/cometbft/... Added test functions and methods for MockStore and other modifications.
server/v2/stf/... Various modifications to WriterMap struct, added new methods for state changes and message handling.
simapp/app.go Modified NewSimApp function to use cometService parameter.
simapp/v2/README.md New file outlining the simapp/v2 application.
simapp/v2/... Added new files for configuration, initialization, export state functionality, and command handling.
store/v2/commitment/store.go & others Added and modified methods to handle empty states and version checks.
tests/integration/... Modified test initializations to include cometService parameter.
x/auth/tx/config.go Updated NewTxConfig to accept customSignModes, added options for ProtoCodec.
simapp/v2/go.mod Updated dependencies and module requirements.

Sequence Diagram(s)

Silently ignoring the generation of sequence diagrams because the changes are too varied and extensive.

Assessment against linked issues

Objective (Issue #) Addressed Explanation
Address crash of simapp/v2 start using go.mod replaces (20492) The changes might resolve this issue, but without explicit confirmation in the summaries, it's not entirely clear. Additional checks may be needed to ensure this fix.

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.

server/v2/cometbft/server.go Fixed Show fixed Hide fixed
server/v2/cometbft/snapshots.go Fixed Show fixed Hide fixed
server/v2/streaming/examples/file/file.go Dismissed Show dismissed Hide dismissed
server/v2/commands.go Dismissed Show dismissed Hide dismissed
server/v2/api/grpc/gogoreflection/fix_registration.go Dismissed Show dismissed Hide dismissed
server/v2/api/grpc/gogoreflection/serverreflection.go Dismissed Show dismissed Hide dismissed
server/v2/api/grpc/gogoreflection/fix_registration.go Dismissed Show dismissed Hide dismissed
api/cosmos/consensus/v1/tx.pulsar.go Fixed Show fixed Hide fixed
api/cosmos/consensus/v1/tx.pulsar.go Fixed Show fixed Hide fixed
api/cosmos/consensus/v1/tx.pulsar.go Fixed Show fixed Hide fixed
api/cosmos/consensus/v1/tx.pulsar.go Fixed Show fixed Hide fixed
api/cosmos/consensus/v1/tx.pulsar.go Fixed Show fixed Hide fixed
@kocubinski kocubinski marked this pull request as ready for review June 18, 2024 15:13
Copy link
Member

@julienrbrt julienrbrt left a comment

Choose a reason for hiding this comment

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

LFG!

@github-actions github-actions bot removed the C:x/auth label Jun 18, 2024
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: 8

Outside diff range and nitpick comments (5)
contrib/images/simd-env/Dockerfile (3)

Line range hint 3-3: Pin versions in apk add to ensure reproducible builds.

- RUN apk add build-base git linux-headers
+ RUN apk add build-base=1.0.0 git=2.24.3 linux-headers=4.19.36

Line range hint 39-39: Always tag the version of an image explicitly to ensure consistency across builds.

- FROM alpine AS run
+ FROM alpine:3.12 AS run

Line range hint 40-40: Pin versions in apk add to avoid potential issues with package updates.

- RUN apk add bash curl jq
+ RUN apk add bash=5.0 curl=7.67.0 jq=1.6
server/v2/streaming/streaming_test.go (1)

15-15: Missing documentation for the PluginTestSuite struct and its fields.

Consider adding comments to explain the purpose and usage of this test suite and its fields.

simapp/v2/app_di.go (1)

43-43: Consider adding a docstring for DefaultNodeHome to explain its purpose.

Review details

Configuration used: .coderabbit.yml
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 2ad7cbf and c73e11e.

Files ignored due to path filters (2)
  • server/v2/cometbft/go.sum is excluded by !**/*.sum
  • simapp/v2/go.sum is excluded by !**/*.sum
Files selected for processing (9)
  • .github/workflows/test.yml (1 hunks)
  • contrib/images/simd-env/Dockerfile (1 hunks)
  • runtime/v2/module.go (2 hunks)
  • scripts/simapp-v2-init.sh (1 hunks)
  • server/v2/cometbft/go.mod (1 hunks)
  • server/v2/streaming/context.go (1 hunks)
  • server/v2/streaming/streaming_test.go (1 hunks)
  • simapp/v2/app_di.go (1 hunks)
  • simapp/v2/go.mod (1 hunks)
Files skipped from review due to trivial changes (1)
  • server/v2/streaming/context.go
Additional context used
Path-based instructions (3)
server/v2/streaming/streaming_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"

runtime/v2/module.go (1)

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

simapp/v2/app_di.go (1)

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

Hadolint
contrib/images/simd-env/Dockerfile

[warning] 3-3: Pin versions in apk add. Instead of apk add <package> use apk add <package>=<version> (DL3018)


[info] 3-3: Use the --no-cache switch to avoid the need to use --update and remove /var/cache/apk/* when done installing packages (DL3019)


[warning] 39-39: Always tag the version of an image explicitly (DL3006)


[warning] 40-40: Pin versions in apk add. Instead of apk add <package> use apk add <package>=<version> (DL3018)


[info] 40-40: Use the --no-cache switch to avoid the need to use --update and remove /var/cache/apk/* when done installing packages (DL3019)

Additional comments not posted (13)
scripts/simapp-v2-init.sh (2)

24-30: Optimize the jq commands by combining them into a single invocation.


18-18: Ensure that the CONFIG variable is properly quoted to prevent word splitting and globbing issues.

runtime/v2/module.go (2)

104-104: Returning nil for ProvideAppVersionModifier is consistent with the intended functionality.


168-168: Ensure that appending to StoreKeys is necessary and does not introduce redundancy.

simapp/v2/go.mod (6)

3-3: Go version 1.22.2 is specified. Verify that this version is compatible with all dependencies and the overall project requirements.


1-1: Ensure that the module path cosmossdk.io/simapp/v2 is correctly set up in DNS or a similar service for package fetching.

Verification successful

The module path cosmossdk.io/simapp/v2 resolves correctly, as confirmed by the successful HTTP response from cosmossdk.io.

Scripts executed

The following scripts were executed for the analysis:


Script:

#!/bin/bash
# Description: Check if the module path resolves correctly.
dig +short cosmossdk.io

Length of output: 96



Script:

#!/bin/bash
# Description: Check if the module path resolves correctly using curl.
curl -I cosmossdk.io

Length of output: 991


245-271: Verify that local paths in the replace directive are correct and accessible. This is crucial for local development and testing.


286-298: The replace directives for server v2 integration seem comprehensive. Ensure that all specified paths are valid and the modules at those paths are at the expected versions.


276-276: The replace directives are used to override module versions:

  • Verify the forked version of github.com/99designs/keyring at github.com/cosmos/keyring v1.2.0 is maintained and up-to-date.
  • Ensure that the local path replacement for github.com/cosmos/cosmos-sdk points to the correct and latest version of the SDK.
  • Check the github.com/syndtr/goleveldb replacement for any potential issues with the specified version.

Also applies to: 278-278, 283-283


5-48: Review the versions and the necessity of each dependency in the require block. Ensure that all versions are consistent and there are no conflicts or known security vulnerabilities.

.github/workflows/test.yml (3)

491-491: Using the latest version of actions/checkout@v4 is appropriate for ensuring the latest features and fixes are utilized.


492-497: Correct usage of actions/setup-go@v5 with Go version 1.22 ensures the build is using the latest stable Go release. Caching is enabled to improve build times.


498-506: Using technote-space/[email protected] to check for relevant file changes before running tests is efficient and prevents unnecessary test executions.

Comment on lines +206 to +208
app.App, err = appBuilder.Build()
if err != nil {
panic(err)
Copy link
Contributor

Choose a reason for hiding this comment

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

Again, consider replacing panic with a more user-friendly error handling strategy during the application build process.

- panic(err)
+ log.Fatalf("Failed to build application: %v", err)
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. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
app.App, err = appBuilder.Build()
if err != nil {
panic(err)
app.App, err = appBuilder.Build()
if err != nil {
log.Fatalf("Failed to build application: %v", err)

Comment on lines +221 to +222
if err := app.LoadLatest(); err != nil {
panic(err)
Copy link
Contributor

Choose a reason for hiding this comment

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

The error handling for app.LoadLatest() uses panic, which could be improved by implementing a more graceful error handling approach.

- panic(err)
+ log.Fatalf("Failed to load latest application state: %v", err)
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. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
if err := app.LoadLatest(); err != nil {
panic(err)
if err := app.LoadLatest(); err != nil {
log.Fatalf("Failed to load latest application state: %v", err)

Comment on lines +76 to +81
userHomeDir, err := os.UserHomeDir()
if err != nil {
panic(err)
}

DefaultNodeHome = filepath.Join(userHomeDir, ".simappv2")
Copy link
Contributor

Choose a reason for hiding this comment

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

The initialization of DefaultNodeHome uses panic on error. Consider using a more graceful error handling mechanism to improve robustness.

- panic(err)
+ log.Fatalf("Failed to get user home directory: %v", err)
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. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
userHomeDir, err := os.UserHomeDir()
if err != nil {
panic(err)
}
DefaultNodeHome = filepath.Join(userHomeDir, ".simappv2")
userHomeDir, err := os.UserHomeDir()
if err != nil {
log.Fatalf("Failed to get user home directory: %v", err)
}
DefaultNodeHome = filepath.Join(userHomeDir, ".simappv2")

Comment on lines +202 to +203
); err != nil {
panic(err)
Copy link
Contributor

Choose a reason for hiding this comment

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

Using panic in the dependency injection setup can lead to abrupt termination. Consider handling this error more gracefully.

- panic(err)
+ log.Fatalf("Dependency injection failed: %v", err)
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. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
); err != nil {
panic(err)
); err != nil {
log.Fatalf("Dependency injection failed: %v", err)

Comment on lines +96 to +99
homeDir := appOpts.Get("home").(string) // TODO
scRawDb, err := db.NewGoLevelDB("application", filepath.Join(homeDir, "data"), nil)
if err != nil {
panic(err)
Copy link
Contributor

Choose a reason for hiding this comment

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

The error handling here also uses panic. It would be better to handle errors more gracefully, especially during initialization.

- panic(err)
+ log.Fatalf("Failed to initialize database: %v", err)
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. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
homeDir := appOpts.Get("home").(string) // TODO
scRawDb, err := db.NewGoLevelDB("application", filepath.Join(homeDir, "data"), nil)
if err != nil {
panic(err)
homeDir := appOpts.Get("home").(string) // TODO
scRawDb, err := db.NewGoLevelDB("application", filepath.Join(homeDir, "data"), nil)
if err != nil {
log.Fatalf("Failed to initialize database: %v", err)

@@ -9,6 +9,7 @@ replace (
cosmossdk.io/depinject => ../../../depinject
cosmossdk.io/server/v2 => ../
cosmossdk.io/server/v2/appmanager => ../appmanager
cosmossdk.io/store => ../../../store
Copy link
Contributor

Choose a reason for hiding this comment

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

Tip

Codebase Verification

The paths specified in the replace section of the go.mod file are not found in the current directory structure. This suggests that the paths might be incorrectly specified or the directory structure has changed. Please verify the paths and update them accordingly.

  • Paths not found:
    • ../../../api
    • ../../../core
    • ../../../core/testing
    • ../../../depinject
    • ../appmanager
    • ../../../store
    • ../../../store/v2
    • ../../../x/accounts
    • ../../../x/auth
    • ../../../x/bank
    • ../../../x/consensus
    • ../../../x/staking
Analysis chain

Ensure the paths in the replace section are correct and accessible. Incorrect paths can lead to build failures.

Scripts executed

The following scripts were executed for the analysis:


Script:

#!/bin/bash
# Description: Verify the paths in the replace section of the go.mod file.

# Test: Check if paths are accessible. Expect: No errors or not found messages.
for path in ../../../api ../../../core ../../../core/testing ../../../depinject ../ ../appmanager ../../../store ../../../store/v2 ../../../x/accounts ../../../x/auth ../../../x/bank ../../../x/consensus ../../../x/staking; do
  if [ ! -d "$path" ]; then
    echo "Path $path not found."
  fi
done

Length of output: 4262

Comment on lines +507 to +511
- name: simapp-v2-smoke-test
if: env.GIT_DIFF
run: |
./scripts/simapp-v2-init.sh

Copy link
Contributor

Choose a reason for hiding this comment

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

Tip

Codebase Verification

The simapp-v2-init.sh script includes some good practices such as set -o errexit and set -o nounset for error handling. However, it lacks comprehensive logging and detailed error messages. Here are some suggestions to improve the script:

  • Initialization and Build Process:

    • Check if directories exist before changing into them.
    • Verify the success of the go build command.
  • Configuration Changes:

    • Check the success of each jq command to ensure the configuration changes are applied correctly.
  • Key Management:

    • Verify the success of key addition and address retrieval commands.
  • Genesis Setup:

    • Check the success of commands related to genesis account and transaction setup.
  • Block Query Loop:

    • Add logging to indicate the progress of the block height query loop and any errors encountered.

Would you like me to provide a revised version of the script with these improvements?

Analysis chain

Ensure that simapp-v2-init.sh includes proper error handling and logging to facilitate debugging and reliability.

Would you like me to review the script for best practices in error handling and provide improvements?

Scripts executed

The following scripts were executed for the analysis:


Script:

#!/bin/bash
# Description: Verify the content of `simapp-v2-init.sh` for proper error handling.
cat scripts/simapp-v2-init.sh

Length of output: 1362

cd "$SIMAPP_DIR"
go build -o "$ROOT/build/simdv2" simdv2/main.go

$SIMD init simapp-v2-node --chain-id simapp-v2-chain
Copy link
Contributor

Choose a reason for hiding this comment

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

Tip

Codebase Verification

The verification script indicates that the expected directories (~/.simapp, ~/.simapp/config, ~/.simapp/data) do not exist, suggesting that the init command may have failed. This aligns with the review comment's suggestion to verify the success of the init command.

  • Please ensure the init command in scripts/simapp-v2-init.sh is executed successfully and the necessary directories are created before proceeding with further steps.
Analysis chain

Consider verifying the success of the init command before proceeding.

Scripts executed

The following scripts were executed for the analysis:


Script:

#!/bin/bash
# Description: Verify the success of the `init` command.

# Test: Check if the `init` command executed successfully. Expect: No errors.
grep "Completed initializing" "$CONFIG/log.txt"

Length of output: 82



Script:

#!/bin/bash
# Description: Verify the success of the `init` command by checking for expected directories or files.

# Expected directories or files created by the `init` command
EXPECTED_DIRS=("~/.simapp" "~/.simapp/config" "~/.simapp/data")

# Check if the expected directories exist
for dir in "${EXPECTED_DIRS[@]}"; do
  if [ ! -d "$dir" ]; then
    echo "Directory $dir does not exist. The init command may have failed."
  else
    echo "Directory $dir exists."
  fi
done

Length of output: 740

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 (1)
codec/depinject.go (1)

Line range hint 51-51: Consider handling missing configuration without using panic.

Using panic can cause the application to terminate unexpectedly, which might not be desirable. It's better to return an error and let the caller handle it:

- panic("auth config bech32 prefix cannot be empty if no custom address codec is provided")
+ return nil, nil, nil, fmt.Errorf("auth config bech32 prefix cannot be empty if no custom address codec is provided")
Review details

Configuration used: .coderabbit.yml
Review profile: CHILL

Commits

Files that changed from the base of the PR and between c73e11e and 77e1603.

Files selected for processing (1)
  • codec/depinject.go (1 hunks)
Additional context used
Path-based instructions (1)
codec/depinject.go (1)

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

Additional comments not posted (2)
codec/depinject.go (2)

38-38: Ensure error messages are clear and provide sufficient context.

While the error message is clear, always consider adding more specific details if the context allows. For instance, including which parameters caused the failure could enhance debugging.


42-42: Good use of error wrapping to maintain error context.

This is a good practice as it helps in debugging by providing a stack trace that can lead to the root cause of the issue.

@kocubinski kocubinski added this pull request to the merge queue Jun 19, 2024
Merged via the queue into main with commit 2d014b2 Jun 19, 2024
70 checks passed
@kocubinski kocubinski deleted the kocu/simapp-v2 branch June 19, 2024 15: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.

simapp/v2 start crashes with panic: proto:not found when using go.mod replaces instead of go.work
7 participants