From 126a9199a0ff2cb97fb2e31c396f478140d93289 Mon Sep 17 00:00:00 2001 From: Ignace Loomans Date: Wed, 19 Jul 2023 13:41:24 +0100 Subject: [PATCH] Updated Scripts & Ran Geth Test --- src/main/resources/geth/geth_start.sh | 6 +++--- src/test/resources/compose/geth/compose_start.sh | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/main/resources/geth/geth_start.sh b/src/main/resources/geth/geth_start.sh index 266672d..37b49b4 100755 --- a/src/main/resources/geth/geth_start.sh +++ b/src/main/resources/geth/geth_start.sh @@ -1,4 +1,4 @@ #!/bin/sh -geth --nousb init ./genesis.json -geth --nousb account import /key.txt --password /password.txt -geth --nousb --rpc --http.api "eth,net,web,txpool" --rpcaddr=0.0.0.0 --allow-insecure-unlock --unlock 0xfe3b557e8fb62b89f4916b721be55ceb828dbd73 --password /password.txt --mine +geth init ./genesis.json +geth account import --password password.txt key.txt +geth --http --http.api "eth,net,txpool" --http.addr=0.0.0.0 --allow-insecure-unlock --unlock 0xfe3b557e8fb62b89f4916b721be55ceb828dbd73 --password /password.txt --mine --miner.etherbase 0xfe3b557e8fb62b89f4916b721be55ceb828dbd73 --rpc.allow-unprotected-txs diff --git a/src/test/resources/compose/geth/compose_start.sh b/src/test/resources/compose/geth/compose_start.sh index 58410e2..ea18c99 100755 --- a/src/test/resources/compose/geth/compose_start.sh +++ b/src/test/resources/compose/geth/compose_start.sh @@ -1,4 +1,4 @@ #!/bin/sh -geth --nousb init /geth/test.json -geth --nousb account import /geth/key.txt --password /geth/password.txt -geth --nousb --rpc --rpcaddr=0.0.0.0 --allow-insecure-unlock --unlock 0xfe3b557e8fb62b89f4916b721be55ceb828dbd73 --password /geth/password.txt --mine +geth init ./genesis.json +geth account import --password password.txt key.txt +geth --http --http.api "eth,net,txpool" --http.addr=0.0.0.0 --allow-insecure-unlock --unlock 0xfe3b557e8fb62b89f4916b721be55ceb828dbd73 --password password.txt --mine --miner.etherbase 0xfe3b557e8fb62b89f4916b721be55ceb828dbd73 --rpc.allow-unprotected-txs