From dd6689a6c72bbdee0d18946b78450d30707bc77f Mon Sep 17 00:00:00 2001 From: Lucca Martins Date: Mon, 24 Feb 2025 18:00:16 -0300 Subject: [PATCH] download dependencies to run script --- integration-tests/rpc_test.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/integration-tests/rpc_test.sh b/integration-tests/rpc_test.sh index 9cfce3af7a..119567f9dc 100644 --- a/integration-tests/rpc_test.sh +++ b/integration-tests/rpc_test.sh @@ -5,5 +5,9 @@ signersDump=$(jq . $signersFile) privKey=$(echo "$signersDump" | jq -r ".[0].priv_key") rpc_url="http://localhost:8545" +cd matic-cli/tests/rpc-tests -go run matic-cli/tests/rpc-tests/main.go --priv-key $privKey --rpc-url $rpc_url \ No newline at end of file +go mod tidy +go main.go --priv-key $privKey --rpc-url $rpc_url + +cd - \ No newline at end of file