|
@@ -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',
|