Browse Source

move `get_autosign_obj()` to autosign.py

The MMGen Project 1 year ago
parent
commit
cc7b8ad78f
3 changed files with 17 additions and 17 deletions
  1. 9 0
      mmgen/autosign.py
  2. 2 2
      mmgen/main_xmrwallet.py
  3. 6 15
      mmgen/xmrwallet.py

+ 9 - 0
mmgen/autosign.py

@@ -558,3 +558,12 @@ class Autosign:
 			enabled = self.cfg.led,
 			enabled = self.cfg.led,
 			simulate = os.getenv('MMGEN_TEST_SUITE_AUTOSIGN_LED_SIMULATE') )
 			simulate = os.getenv('MMGEN_TEST_SUITE_AUTOSIGN_LED_SIMULATE') )
 		self.led.set('off')
 		self.led.set('off')
+
+def get_autosign_obj(cfg,coins=None):
+	return Autosign(
+		AutosignConfig({
+			'mountpoint': cfg.autosign_mountpoint or cfg.mountpoint,
+			'test_suite': cfg.test_suite,
+			'coins': coins if isinstance(coins,str) else ','.join(coins) if coins else 'btc',
+		})
+	)

+ 2 - 2
mmgen/main_xmrwallet.py

@@ -30,7 +30,6 @@ from .xmrwallet import (
 	MoneroWalletOps,
 	MoneroWalletOps,
 	xmrwallet_uarg_info,
 	xmrwallet_uarg_info,
 	xmrwallet_uargs,
 	xmrwallet_uargs,
-	get_autosign_obj,
 )
 )
 
 
 opts_data = {
 opts_data = {
@@ -148,7 +147,8 @@ elif op in ('export-outputs','import-key-images'):
 	wallets = cmd_args.pop(0) if cmd_args else None
 	wallets = cmd_args.pop(0) if cmd_args else None
 
 
 if cfg.autosign and not cfg.test_suite:
 if cfg.autosign and not cfg.test_suite:
-	asi = get_autosign_obj(cfg)
+	from .autosign import get_autosign_obj
+	asi = get_autosign_obj(cfg,'xmr')
 	if not asi.get_insert_status():
 	if not asi.get_insert_status():
 		die(1,'Removable device not present!')
 		die(1,'Removable device not present!')
 	asi.do_mount()
 	asi.do_mount()

+ 6 - 15
mmgen/xmrwallet.py

@@ -54,6 +54,7 @@ from .rpc import json_encoder
 from .proto.xmr.rpc import MoneroRPCClient,MoneroWalletRPCClient
 from .proto.xmr.rpc import MoneroRPCClient,MoneroWalletRPCClient
 from .proto.xmr.daemon import MoneroWalletDaemon
 from .proto.xmr.daemon import MoneroWalletDaemon
 from .ui import keypress_confirm
 from .ui import keypress_confirm
+from .autosign import get_autosign_obj
 
 
 xmrwallet_uargs = namedtuple('xmrwallet_uargs',[
 xmrwallet_uargs = namedtuple('xmrwallet_uargs',[
 	'infile',
 	'infile',
@@ -74,16 +75,6 @@ xmrwallet_uarg_info = (
 		r'(?:[^:]+):(?:\d+)'
 		r'(?:[^:]+):(?:\d+)'
 	)
 	)
 
 
-def get_autosign_obj(cfg):
-	from .autosign import Autosign,AutosignConfig
-	return Autosign(
-		AutosignConfig({
-			'mountpoint': cfg.autosign_mountpoint,
-			'test_suite': cfg.test_suite,
-			'coins': 'XMR',
-		})
-	)
-
 class XMRWalletAddrSpec(str,Hilite,InitErrors,MMGenObject):
 class XMRWalletAddrSpec(str,Hilite,InitErrors,MMGenObject):
 	color = 'cyan'
 	color = 'cyan'
 	width = 0
 	width = 0
@@ -267,7 +258,7 @@ class MoneroMMGenTX:
 			)
 			)
 
 
 			if self.cfg.autosign:
 			if self.cfg.autosign:
-				fn = get_autosign_obj(self.cfg).xmr_tx_dir / fn
+				fn = get_autosign_obj(self.cfg,'xmr').xmr_tx_dir / fn
 
 
 			from .fileutil import write_data_to_file
 			from .fileutil import write_data_to_file
 			write_data_to_file(
 			write_data_to_file(
@@ -450,7 +441,7 @@ class MoneroWalletOutputsFile:
 
 
 		def get_outfile(self,cfg,wallet_fn):
 		def get_outfile(self,cfg,wallet_fn):
 			return (
 			return (
-				get_autosign_obj(cfg).xmr_outputs_dir if cfg.autosign else
+				get_autosign_obj(cfg,'xmr').xmr_outputs_dir if cfg.autosign else
 				wallet_fn.parent ) / self.fn_fs.format(
 				wallet_fn.parent ) / self.fn_fs.format(
 					a = wallet_fn.name,
 					a = wallet_fn.name,
 					b = self.base_chksum,
 					b = self.base_chksum,
@@ -506,7 +497,7 @@ class MoneroWalletOutputsFile:
 
 
 		@classmethod
 		@classmethod
 		def find_fn_from_wallet_fn(cls,cfg,wallet_fn,ret_on_no_match=False):
 		def find_fn_from_wallet_fn(cls,cfg,wallet_fn,ret_on_no_match=False):
-			path = get_autosign_obj(cfg).xmr_outputs_dir or Path()
+			path = get_autosign_obj(cfg,'xmr').xmr_outputs_dir or Path()
 			pat = cls.fn_fs.format(
 			pat = cls.fn_fs.format(
 				a = wallet_fn.name,
 				a = wallet_fn.name,
 				b = f'[0-9a-f]{{{cls.chksum_nchars}}}\\',
 				b = f'[0-9a-f]{{{cls.chksum_nchars}}}\\',
@@ -805,7 +796,7 @@ class MoneroWalletOps:
 		@property
 		@property
 		def autosign_viewkey_addr_file(self):
 		def autosign_viewkey_addr_file(self):
 			from .addrfile import ViewKeyAddrFile
 			from .addrfile import ViewKeyAddrFile
-			mpdir = get_autosign_obj(self.cfg).xmr_dir
+			mpdir = get_autosign_obj(self.cfg,'xmr').xmr_dir
 			flist = [f for f in mpdir.iterdir() if f.name.endswith(ViewKeyAddrFile.ext)]
 			flist = [f for f in mpdir.iterdir() if f.name.endswith(ViewKeyAddrFile.ext)]
 			if len(flist) != 1:
 			if len(flist) != 1:
 				die(2,
 				die(2,
@@ -1618,7 +1609,7 @@ class MoneroWalletOps:
 		@property
 		@property
 		def unsubmitted_tx_path(self):
 		def unsubmitted_tx_path(self):
 			from .autosign import Signable
 			from .autosign import Signable
-			t = Signable.xmr_transaction( get_autosign_obj(self.cfg) )
+			t = Signable.xmr_transaction( get_autosign_obj(self.cfg,'xmr') )
 			if len(t.unsubmitted) != 1:
 			if len(t.unsubmitted) != 1:
 				die('AutosignTXError', "{a} unsubmitted transaction{b} in '{c}'!".format(
 				die('AutosignTXError', "{a} unsubmitted transaction{b} in '{c}'!".format(
 					a = 'More than one' if t.unsubmitted else 'No',
 					a = 'More than one' if t.unsubmitted else 'No',