Skip to content

Commit

Permalink
fix(zetatool): use correct testnet rpc url (#3481)
Browse files Browse the repository at this point in the history
* fix(zetatool): use correct testnet rpc url

* update test
  • Loading branch information
gartnera authored Feb 5, 2025
1 parent 7732338 commit 02bbd81
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/zetatool/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const (

func TestnetConfig() *Config {
return &Config{
ZetaChainRPC: "https://zetachain-testnet-grpc.itrocket.net:443",
ZetaChainRPC: "https://zetachain-testnet-rpc.itrocket.net:443",
EthereumRPC: "https://ethereum-sepolia-rpc.publicnode.com",
ZetaChainID: 101,
BtcUser: "",
Expand Down
2 changes: 1 addition & 1 deletion cmd/zetatool/config/config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ func TestGetConfig(t *testing.T) {

cfg, err = config.GetConfig(chains.Sepolia, "")
require.NoError(t, err)
require.Equal(t, "https://zetachain-testnet-grpc.itrocket.net:443", cfg.ZetaChainRPC)
require.Equal(t, "https://zetachain-testnet-rpc.itrocket.net:443", cfg.ZetaChainRPC)

cfg, err = config.GetConfig(chains.GoerliLocalnet, "")
require.NoError(t, err)
Expand Down

0 comments on commit 02bbd81

Please sign in to comment.