-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This PR fixes two issues: - when running the chain in Docker the REST API was inaccessible - this was due to the default Cosmos app config (app.toml settings) specifying `localhost` in the new version instead of the previous version which specified `0.0.0.0` - when the REST API was accessible, all Msgs and queries threw a 500 internal server error response with the message: ``` failed to load state at height 123; version does not exist (latest height: 123) ``` where the height number was the current block number (which keeps increasing as the chain was still progressing) --- The solution to the "failed to load state" error was found by searching the error which lead to the issue and PR: - cosmos/cosmos-sdk#14949 - cosmos/cosmos-sdk#14952
- Loading branch information
Showing
3 changed files
with
9 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters