go-ethereum/integration-tests/rpc_test.sh
2025-02-24 18:00:16 -03:00

13 lines
No EOL
238 B
Bash

#!/bin/bash
set -e
signersDump=$(jq . $signersFile)
privKey=$(echo "$signersDump" | jq -r ".[0].priv_key")
rpc_url="http://localhost:8545"
cd matic-cli/tests/rpc-tests
go mod tidy
go main.go --priv-key $privKey --rpc-url $rpc_url
cd -