Browse Source

base_proto.ethereum.daemon: disable socket RPC for Geth

The MMGen Project 2 years ago
parent
commit
0ac0bd7137
1 changed files with 1 additions and 0 deletions
  1. 1 0
      mmgen/base_proto/ethereum/daemon.py

+ 1 - 0
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}'],