mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-27 07:23:25 +00:00
Merge branch 'master' of github.com:spesmilo/electrum
This commit is contained in:
commit
ade47e331a
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue