Skip to content

Commit

Permalink
Remove ip
Browse files Browse the repository at this point in the history
  • Loading branch information
KillianH committed Oct 12, 2023
1 parent fbb8b96 commit 421cb6f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- run: |
cat <<EOF > .env
CASPER_PARSER_REDIS=redis:6379
CASPER_PARSER_RPC=http://95.216.44.9:7777/rpc
CASPER_PARSER_RPC=http://node.testnet.casperholders.com:7777/rpc
CASPER_PARSER_DATABASE=postgres://postgres:myPassword@postgres:5432/gotest?sslmode=disable
CASPER_PARSER_EVENT=http://node.testnet.casperholders.com:9999/events/main
EOF
Expand Down
4 changes: 2 additions & 2 deletions kubernetes/mainnet/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ metadata:
name: casperparser-config
data:
CASPER_PARSER_REDIS: "casperparser-redis-service:6379"
CASPER_PARSER_RPC: "http://65.109.54.159:7777/rpc"
CASPER_PARSER_RPC: "http://node.casperholders.com:7777/rpc"
CASPER_PARSER_DATABASE: "postgres://postgres@casperparser-db-service:5432/casperparser?sslmode=disable"
CASPER_PARSER_EVENT: "http://65.109.54.159:9999/events/main"
CASPER_PARSER_EVENT: "http://node.casperholders.com:9999/events/main"
---
apiVersion: v1
kind: ConfigMap
Expand Down
4 changes: 2 additions & 2 deletions kubernetes/testnet/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ metadata:
name: casperparser-config-testnet
data:
CASPER_PARSER_REDIS: "casperparser-redis-service-testnet:6379"
CASPER_PARSER_RPC: "http://188.40.132.200:7777/rpc"
CASPER_PARSER_RPC: "http://node.testnet.casperholders.com:7777/rpc"
CASPER_PARSER_DATABASE: "postgres://postgres@casperparser-db-service-testnet:5432/casperparser-testnet?sslmode=disable"
CASPER_PARSER_EVENT: "http://188.40.132.200:9999/events/main"
CASPER_PARSER_EVENT: "http://node.testnet.casperholders.com:9999/events/main"
---
apiVersion: v1
kind: ConfigMap
Expand Down
2 changes: 1 addition & 1 deletion types/contract/contract_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"testing"
)

var rpcClient = rpc.NewRpcClient("http://rpc.testnet.casperholders.com/rpc")
var rpcClient = rpc.NewRpcClient("https://node.testnet.casperholders.com/rpc")

func TestResult_GetContractType(t *testing.T) {
err := utils.InitViper()
Expand Down

0 comments on commit 421cb6f

Please sign in to comment.