-
Notifications
You must be signed in to change notification settings - Fork 66
[FIX] Fix go.mod dependencies to match Injective core v1.18.0 #348
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -235,17 +235,17 @@ require ( | |
| ) | ||
|
|
||
| replace ( | ||
| cosmossdk.io/api => github.com/InjectiveLabs/cosmos-sdk/api v0.50.14-inj | ||
| cosmossdk.io/client/v2 => github.com/InjectiveLabs/cosmos-sdk/client/v2 v2.0.0-v0.50.14-inj | ||
| cosmossdk.io/core => github.com/InjectiveLabs/cosmos-sdk/core v0.50.14-inj | ||
| cosmossdk.io/errors => github.com/InjectiveLabs/cosmos-sdk/errors v0.50.14-inj | ||
| cosmossdk.io/store => github.com/InjectiveLabs/cosmos-sdk/store v0.50.14-inj | ||
| cosmossdk.io/x/circuit => github.com/InjectiveLabs/cosmos-sdk/x/circuit v0.50.14-inj | ||
| cosmossdk.io/x/evidence => github.com/InjectiveLabs/cosmos-sdk/x/evidence v0.50.14-inj | ||
| cosmossdk.io/x/feegrant => github.com/InjectiveLabs/cosmos-sdk/x/feegrant v0.50.14-inj | ||
| cosmossdk.io/x/nft => github.com/InjectiveLabs/cosmos-sdk/x/nft v0.50.14-inj | ||
| cosmossdk.io/x/tx => github.com/InjectiveLabs/cosmos-sdk/x/tx v0.50.14-inj | ||
| cosmossdk.io/x/upgrade => github.com/InjectiveLabs/cosmos-sdk/x/upgrade v0.50.14-inj | ||
| cosmossdk.io/api => github.com/InjectiveLabs/cosmos-sdk/api v0.50.14-inj.4 | ||
| cosmossdk.io/client/v2 => github.com/InjectiveLabs/cosmos-sdk/client/v2 v2.0.0-v0.50.14-inj.4 | ||
| cosmossdk.io/core => github.com/InjectiveLabs/cosmos-sdk/core v0.50.14-inj.4 | ||
| cosmossdk.io/errors => github.com/InjectiveLabs/cosmos-sdk/errors v0.50.14-inj.4 | ||
| cosmossdk.io/store => github.com/InjectiveLabs/cosmos-sdk/store v0.50.14-inj.4 | ||
| cosmossdk.io/x/circuit => github.com/InjectiveLabs/cosmos-sdk/x/circuit v0.50.14-inj.4 | ||
| cosmossdk.io/x/evidence => github.com/InjectiveLabs/cosmos-sdk/x/evidence v0.50.14-inj.4 | ||
| cosmossdk.io/x/feegrant => github.com/InjectiveLabs/cosmos-sdk/x/feegrant v0.50.14-inj.4 | ||
| cosmossdk.io/x/nft => github.com/InjectiveLabs/cosmos-sdk/x/nft v0.50.14-inj.4 | ||
| cosmossdk.io/x/tx => github.com/InjectiveLabs/cosmos-sdk/x/tx v0.50.14-inj.4 | ||
| cosmossdk.io/x/upgrade => github.com/InjectiveLabs/cosmos-sdk/x/upgrade v0.50.14-inj.4 | ||
|
|
||
| github.com/CosmWasm/wasmd => github.com/InjectiveLabs/wasmd v0.53.3-inj.2 | ||
| github.com/bandprotocol/bandchain-packet => github.com/InjectiveLabs/bandchain-packet v0.0.4-inj-1 | ||
|
|
@@ -254,7 +254,7 @@ replace ( | |
|
|
||
| github.com/cometbft/cometbft => github.com/InjectiveLabs/cometbft v1.0.1-inj.6 | ||
| github.com/cometbft/cometbft/api => github.com/InjectiveLabs/cometbft/api v1.0.0-inj.2 | ||
| github.com/cosmos/cosmos-sdk => github.com/InjectiveLabs/cosmos-sdk v0.50.14-inj | ||
| github.com/cosmos/cosmos-sdk => github.com/InjectiveLabs/cosmos-sdk v0.50.14-inj.4 | ||
|
|
||
| github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v8 => github.com/InjectiveLabs/ibc-apps/middleware/packet-forward-middleware/v8 v8.2.0-inj.3 | ||
| github.com/cosmos/ibc-apps/modules/ibc-hooks/v8 => github.com/InjectiveLabs/ibc-apps/modules/ibc-hooks/v8 v8.0.0-inj.3 | ||
|
|
@@ -263,7 +263,7 @@ replace ( | |
| github.com/cosmos/ibc-go/v8 => github.com/InjectiveLabs/ibc-go/v8 v8.7.0-inj.3 | ||
|
|
||
| // geth dev | ||
| github.com/ethereum/go-ethereum => github.com/InjectiveLabs/go-ethereum v1.16.3-inj | ||
| github.com/ethereum/go-ethereum => github.com/InjectiveLabs/go-ethereum v1.16.3-inj.2 | ||
|
Comment on lines
265
to
+266
|
||
|
|
||
| github.com/improbable-eng/grpc-web => github.com/maxim-inj/grpc-web v0.15.0-inj | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
replace github.com/cosmos/cosmos-sdk => ... v0.50.14-inj.4now points at a newer fork than therequire github.com/cosmos/cosmos-sdk v0.50.12version earlier in the file. Even though the replace will override the code for this module, leavingrequirebehind can be confusing and can cause downstream consumers (who don't apply this module'sreplacedirectives) to resolve an unexpected SDK version. Consider updating therequireversion to the matching upstream tag (e.g., v0.50.14) or otherwise documenting/enforcing the expected fork/version.