diff --git a/data_sync/scripts/start-node-a.sh b/data_sync/scripts/start-node-a.sh new file mode 100755 index 0000000..ebe50d3 --- /dev/null +++ b/data_sync/scripts/start-node-a.sh @@ -0,0 +1,6 @@ +#!/usr/bin/env sh + +# Should probably be a subprocess in python and print to some logger +# Or Docker compose or whatever. + +geth --testnet --syncmode=light --rpc --maxpeers=25 --shh --shh.pow=0.002 --rpcport=8500 --datadir=/tmp/node-a --port=30000 diff --git a/data_sync/scripts/start-node-b.sh b/data_sync/scripts/start-node-b.sh new file mode 100755 index 0000000..cf04111 --- /dev/null +++ b/data_sync/scripts/start-node-b.sh @@ -0,0 +1,6 @@ +#!/usr/bin/env sh + +# Should probably be a subprocess in python and print to some logger +# Or Docker compose or whatever. + +geth --testnet --syncmode=light --rpc --maxpeers=25 --shh --shh.pow=0.002 --rpcport=8501 --datadir=/tmp/node-b --port=30001