From 0ac0bd7137acc450351f91822918664fd34b7f97 Mon Sep 17 00:00:00 2001 From: The MMGen Project Date: Thu, 9 Jun 2022 11:18:09 +0000 Subject: [PATCH] base_proto.ethereum.daemon: disable socket RPC for Geth --- mmgen/base_proto/ethereum/daemon.py | 1 + 1 file changed, 1 insertion(+) diff --git a/mmgen/base_proto/ethereum/daemon.py b/mmgen/base_proto/ethereum/daemon.py index 949e7eed..d2e2f877 100755 --- a/mmgen/base_proto/ethereum/daemon.py +++ b/mmgen/base_proto/ethereum/daemon.py @@ -100,6 +100,7 @@ class geth_daemon(ethereum_daemon): def init_subclass(self): self.coind_args = list_gen( ['--verbosity=0'], + ['--ipcdisable'], # IPC-RPC: if path to socket is longer than 108 chars, geth fails to start ['--http'], ['--http.api=eth,web3,txpool'], [f'--http.port={self.rpc_port}'],