mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-03 02:23:48 +00:00
13 lines
No EOL
238 B
Bash
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 - |