Use a real dummy address

Fixes #1599
This commit is contained in:
Neil Booth 2016-01-04 17:54:23 +09:00
parent 32483e64c6
commit 9ed987c2da
1 changed files with 3 additions and 2 deletions

View File

@ -1071,8 +1071,9 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError):
else:
fee = self.fee_e.get_amount() if freeze_fee else None
if not outputs:
addr = self.payto_e.payto_address if self.payto_e.payto_address else None
outputs = [('address', addr, amount)]
# Any address - Genesis coinbase
outputs = [('address', '1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa',
amount)]
try:
tx = self.wallet.make_unsigned_transaction(self.get_coins(), outputs, self.config, fee)
self.not_enough_funds = False