commit 9ed987c2da5a2e5915c87d77a60c4f387f133240
parent 32483e64c6d3d33a384bc58f0184efe3eee9fb67
Author: Neil Booth <kyuupichan@gmail.com>
Date: Mon, 4 Jan 2016 17:54:23 +0900
Use a real dummy address
Fixes #1599
Diffstat:
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py
@@ -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