We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1aae550 commit d71d4f6Copy full SHA for d71d4f6
init-geth.sh
@@ -105,6 +105,12 @@ echo " Transaction History: $TX_HISTORY blocks"
105
echo " Cache Size: $CACHE_SIZE MB"
106
echo " Preimages: $ENABLE_PREIMAGES"
107
108
+# Remove any stale IPC socket from a previous run
109
+if [ -S /root/ethereum/geth.ipc ]; then
110
+ echo "Removing stale IPC socket from previous run"
111
+ rm -f /root/ethereum/geth.ipc || true
112
+fi
113
+
114
# Start geth in background to fix IPC permissions
115
geth \
116
--datadir /root/ethereum \
0 commit comments