mirror of https://github.com/ethereum/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
432 B
16 lines
432 B
#!/bin/bash
|
|
|
|
SIGNER_BIN="/home/user/tools/clef/clef"
|
|
SIGNER_CMD="/home/user/tools/gtksigner/gtkui.py -s $SIGNER_BIN"
|
|
|
|
# Start clef if not already started
|
|
if [ ! -S /home/user/.clef/clef.ipc ]; then
|
|
$SIGNER_CMD &
|
|
sleep 1
|
|
fi
|
|
|
|
# Should be started by now
|
|
if [ -S /home/user/.clef/clef.ipc ]; then
|
|
# Post incoming request to HTTP channel
|
|
curl -H "Content-Type: application/json" -X POST -d @- http://localhost:8550 2>/dev/null
|
|
fi
|
|
|