From 2be9de113a8c94d013720b2adb6bc2a86a9f0d83 Mon Sep 17 00:00:00 2001 From: The MMGen Project Date: Mon, 24 Feb 2025 11:27:48 +0000 Subject: [PATCH] get_autosign_obj(): clone existing cfg --- mmgen/tx/util.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/mmgen/tx/util.py b/mmgen/tx/util.py index f9d8b7f8..e8f069af 100755 --- a/mmgen/tx/util.py +++ b/mmgen/tx/util.py @@ -17,13 +17,11 @@ def get_autosign_obj(cfg): from ..autosign import Autosign return Autosign( Config({ + '_clone': cfg, 'mountpoint': cfg.autosign_mountpoint, - 'test_suite': cfg.test_suite, - 'test_suite_root_pfx': cfg.test_suite_root_pfx, 'coins': cfg.coin, 'online': not cfg.offline, # used only in online environment (xmrwallet, txcreate, txsend, txbump) - }) - ) + })) def mount_removable_device(cfg): asi = get_autosign_obj(cfg)