From e2ea3b5d26e6ee4833523394a3d004359a98f86f Mon Sep 17 00:00:00 2001 From: The MMGen Project Date: Sun, 17 May 2026 18:03:37 +0000 Subject: [PATCH] main_tool: disable aiohttp backend for arm64 --- mmgen/main_tool.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mmgen/main_tool.py b/mmgen/main_tool.py index a2fe57a9..383359b7 100755 --- a/mmgen/main_tool.py +++ b/mmgen/main_tool.py @@ -384,7 +384,9 @@ if gc.prog_name.endswith('-tool'): opts_data = opts_data, parsed_opts = po, need_proto = cls.need_proto, - init_opts = {'rpc_backend':'aiohttp'} if cmd == 'twimport' else None, + init_opts = {'rpc_backend':'aiohttp'} if cmd == 'twimport' + and gc.machine != 'aarch64' # TODO: aiohttp + Reth is broken for arm64 + else None, process_opts = True) cmd, *args = cfg._args