mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-10 14:03:46 +00:00
9 lines
225 B
Bash
Executable file
9 lines
225 B
Bash
Executable file
#!/bin/sh
|
|
set -exu
|
|
|
|
docker-compose -f docker-compose-add-signer.yml --profile settlement down
|
|
|
|
for var in "$@"
|
|
do
|
|
docker exec $var geth attach --exec "clique.propose(\"$SIGNER_NODE_ADDRESS\", false)" /data/geth.ipc
|
|
done
|