Skip to content

Commit

Permalink
Merge pull request #116 from InjectiveLabs/f/fix-lb
Browse files Browse the repository at this point in the history
fix: remove tcp prefix to fix TLS check issue
  • Loading branch information
nmarcetic authored Mar 14, 2023
2 parents 42cab64 + a15275f commit a3c32cf
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/common/network.go
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ func LoadNetwork(name string, node string) Network {
lcdEndpoint = "https://k8s.global.mainnet.lcd.injective.network"
tmEndpoint = "https://k8s.global.mainnet.tm.injective.network:443"
chainGrpcEndpoint = "k8s.global.mainnet.chain.grpc.injective.network:443"
exchangeGrpcEndpoint = "tcp://k8s.global.mainnet.exchange.grpc.injective.network:443"
exchangeGrpcEndpoint = "k8s.global.mainnet.exchange.grpc.injective.network:443"
chainTlsCert = credentials.NewServerTLSFromCert(&tls.Certificate{})
explorerGrpcEndpoint = "tcp://k8s.mainnet.explorer.grpc.injective.network:443"
exchangeTlsCert = credentials.NewServerTLSFromCert(&tls.Certificate{})
Expand Down

0 comments on commit a3c32cf

Please sign in to comment.