Skip to content

Commit

Permalink
all: fix broken simapp dep
Browse files Browse the repository at this point in the history
  • Loading branch information
Raneet10 committed Mar 8, 2024
1 parent 093ba0c commit 05814c8
Show file tree
Hide file tree
Showing 11 changed files with 270 additions and 35 deletions.
1 change: 0 additions & 1 deletion simapp/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,6 @@ require (

// Below are the long-lived replace of the SimApp
replace (

// TODO HV2: this fixes the app build temporarily > to remove once we have our version of the cosmos-sdk fork
cosmossdk.io/x/circuit => ../x/circuit
cosmossdk.io/x/evidence => ../x/evidence
Expand Down
9 changes: 6 additions & 3 deletions x/circuit/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ require (
github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c // indirect
github.com/hashicorp/go-hclog v1.5.0 // indirect
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
github.com/hashicorp/go-metrics v0.5.1 // indirect
github.com/hashicorp/go-metrics v0.5.2 // indirect
github.com/hashicorp/go-plugin v1.5.2 // indirect
github.com/hashicorp/golang-lru v1.0.2 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
Expand Down Expand Up @@ -111,7 +111,7 @@ require (
github.com/mtibben/percent v0.2.1 // indirect
github.com/oasisprotocol/curve25519-voi v0.0.0-20230904125328-1f23a7beb09a // indirect
github.com/oklog/run v1.1.0 // indirect
github.com/pelletier/go-toml/v2 v2.0.8 // indirect
github.com/pelletier/go-toml/v2 v2.1.0 // indirect
github.com/petermattis/goid v0.0.0-20230904192822-1876fd5063bc // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
Expand Down Expand Up @@ -157,4 +157,7 @@ require (
)

// TODO HV2: this fixes the app build temporarily > to remove once we have our version of the cosmos-sdk fork
replace github.com/cosmos/cosmos-sdk => ../../
replace (
cosmossdk.io/simapp => ../../simapp
github.com/cosmos/cosmos-sdk => ../../
)
65 changes: 60 additions & 5 deletions x/circuit/go.sum

Large diffs are not rendered by default.

9 changes: 6 additions & 3 deletions x/evidence/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ require (
github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c // indirect
github.com/hashicorp/go-hclog v1.5.0 // indirect
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
github.com/hashicorp/go-metrics v0.5.1 // indirect
github.com/hashicorp/go-metrics v0.5.2 // indirect
github.com/hashicorp/go-plugin v1.5.2 // indirect
github.com/hashicorp/golang-lru v1.0.2 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
Expand Down Expand Up @@ -114,7 +114,7 @@ require (
github.com/mtibben/percent v0.2.1 // indirect
github.com/oasisprotocol/curve25519-voi v0.0.0-20230904125328-1f23a7beb09a // indirect
github.com/oklog/run v1.1.0 // indirect
github.com/pelletier/go-toml/v2 v2.0.8 // indirect
github.com/pelletier/go-toml/v2 v2.1.0 // indirect
github.com/petermattis/goid v0.0.0-20230904192822-1876fd5063bc // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
Expand Down Expand Up @@ -158,4 +158,7 @@ require (
)

// TODO HV2: this fixes the app build temporarily > to remove once we have our version of the cosmos-sdk fork
replace github.com/cosmos/cosmos-sdk => ../../
replace (
cosmossdk.io/simapp => ../../simapp
github.com/cosmos/cosmos-sdk => ../../
)
65 changes: 60 additions & 5 deletions x/evidence/go.sum

Large diffs are not rendered by default.

9 changes: 6 additions & 3 deletions x/feegrant/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ require (
github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c // indirect
github.com/hashicorp/go-hclog v1.5.0 // indirect
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
github.com/hashicorp/go-metrics v0.5.1 // indirect
github.com/hashicorp/go-metrics v0.5.2 // indirect
github.com/hashicorp/go-plugin v1.5.2 // indirect
github.com/hashicorp/golang-lru v1.0.2 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
Expand Down Expand Up @@ -116,7 +116,7 @@ require (
github.com/mtibben/percent v0.2.1 // indirect
github.com/oasisprotocol/curve25519-voi v0.0.0-20230904125328-1f23a7beb09a // indirect
github.com/oklog/run v1.1.0 // indirect
github.com/pelletier/go-toml/v2 v2.0.8 // indirect
github.com/pelletier/go-toml/v2 v2.1.0 // indirect
github.com/petermattis/goid v0.0.0-20230904192822-1876fd5063bc // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
Expand Down Expand Up @@ -159,4 +159,7 @@ require (
)

// TODO HV2: this fixes the app build temporarily > to remove once we have our version of the cosmos-sdk fork
replace github.com/cosmos/cosmos-sdk => ../../
replace (
cosmossdk.io/simapp => ../../simapp
github.com/cosmos/cosmos-sdk => ../../
)
65 changes: 60 additions & 5 deletions x/feegrant/go.sum

Large diffs are not rendered by default.

9 changes: 6 additions & 3 deletions x/nft/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ require (
github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c // indirect
github.com/hashicorp/go-hclog v1.5.0 // indirect
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
github.com/hashicorp/go-metrics v0.5.1 // indirect
github.com/hashicorp/go-metrics v0.5.2 // indirect
github.com/hashicorp/go-plugin v1.5.2 // indirect
github.com/hashicorp/golang-lru v1.0.2 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
Expand Down Expand Up @@ -111,7 +111,7 @@ require (
github.com/mtibben/percent v0.2.1 // indirect
github.com/oasisprotocol/curve25519-voi v0.0.0-20230904125328-1f23a7beb09a // indirect
github.com/oklog/run v1.1.0 // indirect
github.com/pelletier/go-toml/v2 v2.0.8 // indirect
github.com/pelletier/go-toml/v2 v2.1.0 // indirect
github.com/petermattis/goid v0.0.0-20230904192822-1876fd5063bc // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
Expand Down Expand Up @@ -157,4 +157,7 @@ require (
)

// TODO HV2: this fixes the app build temporarily > to remove once we have our version of the cosmos-sdk fork
replace github.com/cosmos/cosmos-sdk => ../../
replace (
cosmossdk.io/simapp => ../../simapp
github.com/cosmos/cosmos-sdk => ../../
)
Loading

0 comments on commit 05814c8

Please sign in to comment.