Skip to content

Commit

Permalink
set light client module names (#3113)
Browse files Browse the repository at this point in the history
* set light client module names

* go mod tidy
  • Loading branch information
damiannolan authored Feb 7, 2023
1 parent ceb9464 commit 26075ef
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion e2e/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ require (
github.com/docker/docker v20.10.19+incompatible
github.com/strangelove-ventures/interchaintest/v7 v7.0.0-20230201060741-e0e4e0f9283b
github.com/stretchr/testify v1.8.1
github.com/tendermint/tendermint v0.37.0-rc2
go.uber.org/zap v1.23.0
golang.org/x/mod v0.6.0
google.golang.org/grpc v1.52.3
Expand Down Expand Up @@ -178,7 +179,6 @@ require (
github.com/subosito/gotenv v1.4.2 // indirect
github.com/syndtr/goleveldb v1.0.1-0.20220614013038-64ee5596c38a // indirect
github.com/tendermint/go-amino v0.16.0 // indirect
github.com/tendermint/tendermint v0.37.0-rc2 // indirect
github.com/tendermint/tm-db v0.6.7 // indirect
github.com/tidwall/btree v1.5.2 // indirect
github.com/ulikunitz/xz v0.5.8 // indirect
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ require (
github.com/stretchr/testify v1.8.1
github.com/tendermint/tendermint v0.37.0-rc2
github.com/tendermint/tm-db v0.6.7
golang.org/x/exp v0.0.0-20221019170559-20944726eadf
google.golang.org/genproto v0.0.0-20221227171554-f9683d7f8bef
google.golang.org/grpc v1.52.3
google.golang.org/protobuf v1.28.1
Expand Down Expand Up @@ -147,6 +146,7 @@ require (
go.etcd.io/bbolt v1.3.6 // indirect
go.opencensus.io v0.24.0 // indirect
golang.org/x/crypto v0.4.0 // indirect
golang.org/x/exp v0.0.0-20221019170559-20944726eadf // indirect
golang.org/x/net v0.4.0 // indirect
golang.org/x/oauth2 v0.0.0-20221014153046-6fdb5e3db783 // indirect
golang.org/x/sys v0.3.0 // indirect
Expand Down
2 changes: 1 addition & 1 deletion modules/light-clients/06-solomachine/keys.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package solomachine

const (
ModuleName = "solo machine"
ModuleName = "06-solomachine"
)
2 changes: 1 addition & 1 deletion modules/light-clients/07-tendermint/keys.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package tendermint

const (
ModuleName = "tendermint-client"
ModuleName = "07-tendermint"
)

0 comments on commit 26075ef

Please sign in to comment.