From c4abd4060f590b792154720e8da98ebd340e691b Mon Sep 17 00:00:00 2001 From: The MMGen Project Date: Thu, 27 Nov 2025 11:34:09 +0000 Subject: [PATCH] xmrwallet: increase truncated address width --- mmgen/xmrwallet/ops/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mmgen/xmrwallet/ops/__init__.py b/mmgen/xmrwallet/ops/__init__.py index 71d4e7c9..599ddc66 100755 --- a/mmgen/xmrwallet/ops/__init__.py +++ b/mmgen/xmrwallet/ops/__init__.py @@ -56,7 +56,7 @@ class OpBase: def hl_amt(amt): return self.proto.coin_amt(amt, from_unit='atomic').hl() - addr_width = 95 if self.cfg.full_address else 17 + addr_width = 95 if self.cfg.full_address else 24 self.proto = init_proto(cfg, 'xmr', network=self.cfg.network, need_amt=True)