-
Notifications
You must be signed in to change notification settings - Fork 208
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update to cosmos v0.47.10 (#1336)
* update to cosmos v0.47.10 * fixing sdk * fix sdk * fixing lava-js for cosmos 47.10 * fix gopath for lavajs * increase lavajs version * migrate spec to use uint for multiplier * remove registrations * fix lint * fix print --------- Co-authored-by: Yarom Swisa <[email protected] git config --global user.name Yarom> Co-authored-by: Ran Mishael <[email protected]> Co-authored-by: Ran Mishael <[email protected]>
- Loading branch information
1 parent
c665e6a
commit cfb9063
Showing
18 changed files
with
6,177 additions
and
642 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,9 +13,9 @@ function prepare() { | |
file_path="../../go.mod" | ||
expected_lines=( | ||
"github.com/gogo/googleapis v1.4.1 // indirect" | ||
"github.com/cosmos/cosmos-sdk v0.47.3" | ||
"github.com/cosmos/cosmos-sdk v0.47.10" | ||
"github.com/cosmos/gogoproto v1.4.10" | ||
"github.com/cosmos/cosmos-proto v1.0.0-beta.2" | ||
"github.com/cosmos/cosmos-proto v1.0.0-beta.4" | ||
) | ||
|
||
missing_lines=() | ||
|
@@ -48,7 +48,7 @@ function prepare() { | |
exit 1 | ||
fi | ||
|
||
specific_dir="$GOPATH/pkg/mod/github.com/lavanet/[email protected].7-0.20231211141641-2a9ea55b724d" | ||
specific_dir="$GOPATH/pkg/mod/github.com/lavanet/[email protected].10-lava-cosmos" | ||
|
||
if [[ ! -d "$specific_dir" ]]; then | ||
echo "Error: The cosmos-sdk directory ('$specific_dir') does not exist under '$GOPATH/pkg/mod'." >&2 | ||
|
@@ -72,7 +72,7 @@ function prepare() { | |
exit 1 | ||
fi | ||
|
||
cosmosprotosdir="$GOPATH/pkg/mod/github.com/cosmos/[email protected].2" | ||
cosmosprotosdir="$GOPATH/pkg/mod/github.com/cosmos/[email protected].4" | ||
|
||
if [[ ! -d "$cosmosprotosdir" ]]; then | ||
echo "Error: The cosmosprotosdir directory ('$cosmosprotosdir') does not exist under '$GOPATH/pkg/mod'." >&2 | ||
|
Oops, something went wrong.