tMerge branch 'master' of github.com:spesmilo/electrum - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit ade47e331a6c5ab9c386eedce1f67b766ecb4ec3 DIR parent 47e0b4cd02a31d4bb7290aa56b1cc0246e16df06 HTML Author: ThomasV <thomasv@electrum.org> Date: Mon, 18 Nov 2019 05:12:25 +0100 Merge branch 'master' of github.com:spesmilo/electrum Diffstat: M electrum/commands.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- DIR diff --git a/electrum/commands.py b/electrum/commands.py t@@ -34,6 +34,7 @@ import operator import asyncio import inspect from functools import wraps, partial +from itertools import repeat from decimal import Decimal from typing import Optional, TYPE_CHECKING, Dict, List t@@ -549,7 +550,7 @@ class Commands: raise Exception("Cannot specify both 'fee' and 'feerate' at the same time!") self.nocheck = nocheck change_addr = self._resolver(change_addr, wallet) - domain_addr = None if domain_addr is None else map(self._resolver, domain_addr) + domain_addr = None if domain_addr is None else map(self._resolver, domain_addr, repeat(wallet)) final_outputs = [] for address, amount in outputs: address = self._resolver(address, wallet)