2013-09-14 12:07:54 -07:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
|
|
|
# Electrum - lightweight Bitcoin client
|
|
|
|
# Copyright (C) 2012 thomasv@gitorious
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2015-06-24 23:58:40 -07:00
|
|
|
import datetime
|
|
|
|
import json
|
2013-09-14 12:07:54 -07:00
|
|
|
|
2015-06-24 23:58:40 -07:00
|
|
|
import PyQt4
|
2013-09-14 12:07:54 -07:00
|
|
|
from PyQt4.QtGui import *
|
|
|
|
from PyQt4.QtCore import *
|
|
|
|
import PyQt4.QtCore as QtCore
|
|
|
|
|
|
|
|
from electrum import transaction
|
2015-02-26 04:59:29 -08:00
|
|
|
from electrum.bitcoin import base_encode
|
2015-06-24 23:58:40 -07:00
|
|
|
from electrum.i18n import _
|
2014-06-12 13:24:10 -07:00
|
|
|
from electrum.plugins import run_hook
|
|
|
|
|
2015-03-14 11:08:56 -07:00
|
|
|
from util import *
|
|
|
|
|
2015-07-03 20:26:28 -07:00
|
|
|
dialogs = [] # Otherwise python randomly garbage collects the dialogs...
|
|
|
|
|
2015-06-26 18:56:01 -07:00
|
|
|
def show_transaction(tx, parent, desc=None, prompt_if_unsaved=False):
|
|
|
|
d = TxDialog(tx, parent, desc, prompt_if_unsaved)
|
2015-07-03 20:26:28 -07:00
|
|
|
dialogs.append(d)
|
2015-06-26 18:56:01 -07:00
|
|
|
d.show()
|
2013-09-14 12:07:54 -07:00
|
|
|
|
2015-12-23 01:31:36 -08:00
|
|
|
class TxDialog(QDialog, MessageBoxMixin):
|
2013-09-14 12:07:54 -07:00
|
|
|
|
2015-06-26 18:56:01 -07:00
|
|
|
def __init__(self, tx, parent, desc, prompt_if_unsaved):
|
2015-06-24 23:58:40 -07:00
|
|
|
'''Transactions in the wallet will show their description.
|
|
|
|
Pass desc to give a description for txs not yet in the wallet.
|
|
|
|
'''
|
2016-01-16 20:41:09 -08:00
|
|
|
QDialog.__init__(self, parent=None) # Top-level window
|
2013-09-14 12:07:54 -07:00
|
|
|
self.tx = tx
|
2015-07-04 08:33:18 -07:00
|
|
|
self.tx.deserialize()
|
2016-01-16 20:36:40 -08:00
|
|
|
self.main_window = parent
|
2013-09-14 12:07:54 -07:00
|
|
|
self.wallet = parent.wallet
|
2015-07-03 20:26:28 -07:00
|
|
|
self.prompt_if_unsaved = prompt_if_unsaved
|
|
|
|
self.saved = False
|
2015-06-24 23:58:40 -07:00
|
|
|
self.desc = desc
|
2014-10-21 10:05:51 -07:00
|
|
|
|
2015-12-12 01:20:49 -08:00
|
|
|
self.setMinimumWidth(660)
|
2013-09-16 20:19:23 -07:00
|
|
|
self.setWindowTitle(_("Transaction"))
|
2013-09-14 12:07:54 -07:00
|
|
|
|
|
|
|
vbox = QVBoxLayout()
|
|
|
|
self.setLayout(vbox)
|
|
|
|
|
2013-09-16 20:19:23 -07:00
|
|
|
vbox.addWidget(QLabel(_("Transaction ID:")))
|
2015-04-20 02:49:27 -07:00
|
|
|
self.tx_hash_e = ButtonsLineEdit()
|
2016-01-16 20:36:40 -08:00
|
|
|
qr_show = lambda: parent.show_qrcode(str(self.tx_hash_e.text()), 'Transaction ID', parent=self)
|
2015-04-20 02:49:27 -07:00
|
|
|
self.tx_hash_e.addButton(":icons/qrcode.png", qr_show, _("Show as QR code"))
|
2013-09-14 12:07:54 -07:00
|
|
|
self.tx_hash_e.setReadOnly(True)
|
|
|
|
vbox.addWidget(self.tx_hash_e)
|
|
|
|
self.status_label = QLabel()
|
|
|
|
vbox.addWidget(self.status_label)
|
|
|
|
|
2015-06-24 23:58:40 -07:00
|
|
|
self.tx_desc = QLabel()
|
|
|
|
vbox.addWidget(self.tx_desc)
|
2013-09-14 12:07:54 -07:00
|
|
|
self.date_label = QLabel()
|
|
|
|
vbox.addWidget(self.date_label)
|
|
|
|
self.amount_label = QLabel()
|
|
|
|
vbox.addWidget(self.amount_label)
|
|
|
|
self.fee_label = QLabel()
|
|
|
|
vbox.addWidget(self.fee_label)
|
|
|
|
|
2013-09-15 04:29:09 -07:00
|
|
|
self.add_io(vbox)
|
|
|
|
|
2013-09-15 02:41:06 -07:00
|
|
|
vbox.addStretch(1)
|
2013-09-14 12:07:54 -07:00
|
|
|
|
|
|
|
self.sign_button = b = QPushButton(_("Sign"))
|
|
|
|
b.clicked.connect(self.sign)
|
|
|
|
|
|
|
|
self.broadcast_button = b = QPushButton(_("Broadcast"))
|
2015-03-25 02:46:15 -07:00
|
|
|
b.clicked.connect(self.do_broadcast)
|
2013-09-14 12:07:54 -07:00
|
|
|
|
|
|
|
self.save_button = b = QPushButton(_("Save"))
|
|
|
|
b.clicked.connect(self.save)
|
|
|
|
|
2015-03-14 11:08:56 -07:00
|
|
|
self.cancel_button = b = QPushButton(_("Close"))
|
2015-03-25 02:46:15 -07:00
|
|
|
b.clicked.connect(self.close)
|
2015-03-14 11:08:56 -07:00
|
|
|
b.setDefault(True)
|
2014-06-12 13:24:10 -07:00
|
|
|
|
2015-03-14 11:08:56 -07:00
|
|
|
self.qr_button = b = QPushButton()
|
2014-06-23 00:42:07 -07:00
|
|
|
b.setIcon(QIcon(":icons/qrcode.png"))
|
2014-06-17 07:24:01 -07:00
|
|
|
b.clicked.connect(self.show_qr)
|
2013-09-14 12:07:54 -07:00
|
|
|
|
2016-01-16 20:36:40 -08:00
|
|
|
self.copy_button = CopyButton(lambda: str(self.tx), parent.app)
|
2015-04-20 05:44:59 -07:00
|
|
|
|
2015-06-26 19:48:27 -07:00
|
|
|
# Action buttons
|
|
|
|
self.buttons = [self.sign_button, self.broadcast_button, self.cancel_button]
|
2015-06-29 07:00:31 -07:00
|
|
|
# Transaction sharing buttons
|
|
|
|
self.sharing_buttons = [self.copy_button, self.qr_button, self.save_button]
|
|
|
|
|
2014-06-20 02:55:34 -07:00
|
|
|
run_hook('transaction_dialog', self)
|
2014-10-21 10:05:51 -07:00
|
|
|
|
2015-06-26 19:48:27 -07:00
|
|
|
hbox = QHBoxLayout()
|
2015-06-29 07:00:31 -07:00
|
|
|
hbox.addLayout(Buttons(*self.sharing_buttons))
|
2015-06-26 19:48:27 -07:00
|
|
|
hbox.addStretch(1)
|
|
|
|
hbox.addLayout(Buttons(*self.buttons))
|
|
|
|
vbox.addLayout(hbox)
|
2014-06-24 05:48:15 -07:00
|
|
|
self.update()
|
2014-06-20 02:55:34 -07:00
|
|
|
|
2015-03-25 02:46:15 -07:00
|
|
|
def do_broadcast(self):
|
2016-01-22 23:06:32 -08:00
|
|
|
self.main_window.push_top_level_window(self)
|
|
|
|
try:
|
|
|
|
self.main_window.broadcast_transaction(self.tx, self.desc)
|
|
|
|
finally:
|
|
|
|
self.main_window.pop_top_level_window(self)
|
2016-01-25 02:26:02 -08:00
|
|
|
self.saved = True
|
2015-07-03 20:26:28 -07:00
|
|
|
self.update()
|
2015-03-25 02:46:15 -07:00
|
|
|
|
2015-07-03 20:26:28 -07:00
|
|
|
def closeEvent(self, event):
|
2016-01-25 02:26:02 -08:00
|
|
|
if (self.prompt_if_unsaved and not self.saved
|
2015-12-23 01:31:36 -08:00
|
|
|
and not self.question(_('This transaction is not saved. Close anyway?'), title=_("Warning"))):
|
2015-07-03 20:26:28 -07:00
|
|
|
event.ignore()
|
|
|
|
else:
|
|
|
|
event.accept()
|
|
|
|
dialogs.remove(self)
|
2013-09-14 12:07:54 -07:00
|
|
|
|
2014-06-17 07:24:01 -07:00
|
|
|
def show_qr(self):
|
2016-02-12 06:20:34 -08:00
|
|
|
text = str(self.tx).decode('hex')
|
2015-02-26 04:59:29 -08:00
|
|
|
text = base_encode(text, base=43)
|
2014-06-17 07:24:01 -07:00
|
|
|
try:
|
2016-01-16 20:36:40 -08:00
|
|
|
self.main_window.show_qrcode(text, 'Transaction', parent=self)
|
2014-06-17 07:24:01 -07:00
|
|
|
except Exception as e:
|
2014-06-19 00:42:19 -07:00
|
|
|
self.show_message(str(e))
|
2013-09-14 12:07:54 -07:00
|
|
|
|
|
|
|
|
|
|
|
def sign(self):
|
2015-06-02 22:24:15 -07:00
|
|
|
def sign_done(success):
|
2015-07-04 02:25:44 -07:00
|
|
|
self.sign_button.setDisabled(False)
|
2016-01-22 23:06:32 -08:00
|
|
|
self.main_window.pop_top_level_window(self)
|
2015-12-25 18:18:32 -08:00
|
|
|
if success:
|
2016-01-25 02:26:02 -08:00
|
|
|
self.prompt_if_unsaved = True
|
2015-12-25 18:18:32 -08:00
|
|
|
self.saved = False
|
|
|
|
self.update()
|
2015-07-04 02:25:44 -07:00
|
|
|
|
2015-12-25 18:18:32 -08:00
|
|
|
self.sign_button.setDisabled(True)
|
2016-01-22 23:06:32 -08:00
|
|
|
self.main_window.push_top_level_window(self)
|
|
|
|
self.main_window.sign_tx(self.tx, sign_done)
|
2013-09-14 12:07:54 -07:00
|
|
|
|
|
|
|
def save(self):
|
2014-05-21 02:36:37 -07:00
|
|
|
name = 'signed_%s.txn' % (self.tx.hash()[0:8]) if self.tx.is_complete() else 'unsigned.txn'
|
2016-01-16 20:36:40 -08:00
|
|
|
fileName = self.main_window.getSaveFileName(_("Select where to save your signed transaction"), name, "*.txn")
|
2013-09-14 12:07:54 -07:00
|
|
|
if fileName:
|
|
|
|
with open(fileName, "w+") as f:
|
2015-07-04 08:33:18 -07:00
|
|
|
f.write(json.dumps(self.tx.as_dict(), indent=4) + '\n')
|
2013-09-14 12:07:54 -07:00
|
|
|
self.show_message(_("Transaction saved successfully"))
|
2015-03-25 02:46:15 -07:00
|
|
|
self.saved = True
|
2013-09-14 12:07:54 -07:00
|
|
|
|
2013-09-15 04:29:09 -07:00
|
|
|
|
2013-09-14 12:07:54 -07:00
|
|
|
def update(self):
|
2015-03-20 14:37:06 -07:00
|
|
|
is_relevant, is_mine, v, fee = self.wallet.get_wallet_delta(self.tx)
|
|
|
|
tx_hash = self.tx.hash()
|
2015-06-24 23:58:40 -07:00
|
|
|
desc = self.desc
|
2015-06-26 04:15:51 -07:00
|
|
|
time_str = None
|
2015-07-03 20:26:28 -07:00
|
|
|
self.broadcast_button.hide()
|
2013-09-14 12:07:54 -07:00
|
|
|
|
2014-05-21 02:36:37 -07:00
|
|
|
if self.tx.is_complete():
|
2014-06-22 03:07:41 -07:00
|
|
|
status = _("Signed")
|
2013-09-14 12:07:54 -07:00
|
|
|
|
|
|
|
if tx_hash in self.wallet.transactions.keys():
|
2015-12-15 03:52:30 -08:00
|
|
|
desc = self.wallet.get_label(tx_hash)
|
2015-05-06 16:52:34 -07:00
|
|
|
conf, timestamp = self.wallet.get_confirmations(tx_hash)
|
2013-09-14 12:07:54 -07:00
|
|
|
if timestamp:
|
|
|
|
time_str = datetime.datetime.fromtimestamp(timestamp).isoformat(' ')[:-3]
|
|
|
|
else:
|
2015-06-26 04:15:51 -07:00
|
|
|
time_str = _('Pending')
|
2014-06-22 03:07:41 -07:00
|
|
|
status = _("%d confirmations")%conf
|
2015-07-04 00:37:01 -07:00
|
|
|
else:
|
2013-09-14 12:07:54 -07:00
|
|
|
self.broadcast_button.show()
|
2015-06-26 04:15:51 -07:00
|
|
|
# cannot broadcast when offline
|
2016-01-16 20:36:40 -08:00
|
|
|
if self.main_window.network is None:
|
2015-06-26 04:15:51 -07:00
|
|
|
self.broadcast_button.setEnabled(False)
|
2013-09-14 12:07:54 -07:00
|
|
|
else:
|
2014-06-22 03:07:41 -07:00
|
|
|
s, r = self.tx.signature_count()
|
2015-02-02 10:17:08 -08:00
|
|
|
status = _("Unsigned") if s == 0 else _('Partially signed') + ' (%d/%d)'%(s,r)
|
2015-06-26 04:15:51 -07:00
|
|
|
tx_hash = _('Unknown');
|
|
|
|
|
|
|
|
if self.wallet.can_sign(self.tx):
|
|
|
|
self.sign_button.show()
|
|
|
|
else:
|
|
|
|
self.sign_button.hide()
|
|
|
|
|
2013-09-14 12:07:54 -07:00
|
|
|
self.tx_hash_e.setText(tx_hash)
|
2015-06-24 23:58:40 -07:00
|
|
|
if desc is None:
|
|
|
|
self.tx_desc.hide()
|
|
|
|
else:
|
|
|
|
self.tx_desc.setText(_("Description") + ': ' + desc)
|
|
|
|
self.tx_desc.show()
|
2014-06-22 03:07:41 -07:00
|
|
|
self.status_label.setText(_('Status:') + ' ' + status)
|
2013-09-14 12:07:54 -07:00
|
|
|
|
|
|
|
if time_str is not None:
|
2013-09-16 20:19:23 -07:00
|
|
|
self.date_label.setText(_("Date: %s")%time_str)
|
2013-09-14 12:07:54 -07:00
|
|
|
self.date_label.show()
|
|
|
|
else:
|
|
|
|
self.date_label.hide()
|
|
|
|
|
2015-06-11 20:06:23 -07:00
|
|
|
# if we are not synchronized, we cannot tell
|
2014-03-15 02:01:25 -07:00
|
|
|
if not self.wallet.up_to_date:
|
|
|
|
return
|
|
|
|
|
2016-01-16 20:36:40 -08:00
|
|
|
base_unit = self.main_window.base_unit()
|
|
|
|
format_amount = self.main_window.format_amount
|
|
|
|
|
2014-10-21 10:05:51 -07:00
|
|
|
if is_relevant:
|
2013-09-14 12:07:54 -07:00
|
|
|
if is_mine:
|
2014-10-21 10:05:51 -07:00
|
|
|
if fee is not None:
|
2016-01-16 20:36:40 -08:00
|
|
|
self.amount_label.setText(_("Amount sent:")+' %s'% format_amount(-v+fee) + ' ' + base_unit)
|
|
|
|
self.fee_label.setText(_("Transaction fee")+': %s'% format_amount(-fee) + ' ' + base_unit)
|
2013-09-14 12:07:54 -07:00
|
|
|
else:
|
2016-01-16 20:36:40 -08:00
|
|
|
self.amount_label.setText(_("Amount sent:")+' %s'% format_amount(-v) + ' ' + base_unit)
|
2013-11-05 15:24:58 -08:00
|
|
|
self.fee_label.setText(_("Transaction fee")+': '+ _("unknown"))
|
2013-09-14 12:07:54 -07:00
|
|
|
else:
|
2016-01-16 20:36:40 -08:00
|
|
|
self.amount_label.setText(_("Amount received:")+' %s'% format_amount(v) + ' ' + base_unit)
|
2013-09-14 12:07:54 -07:00
|
|
|
else:
|
2013-09-16 20:19:23 -07:00
|
|
|
self.amount_label.setText(_("Transaction unrelated to your wallet"))
|
2013-09-14 12:07:54 -07:00
|
|
|
|
2014-06-24 05:48:15 -07:00
|
|
|
run_hook('transaction_dialog_update', self)
|
2013-09-14 12:07:54 -07:00
|
|
|
|
|
|
|
|
2013-09-15 04:29:09 -07:00
|
|
|
def add_io(self, vbox):
|
2013-09-14 12:07:54 -07:00
|
|
|
|
2014-03-05 13:04:31 -08:00
|
|
|
if self.tx.locktime > 0:
|
|
|
|
vbox.addWidget(QLabel("LockTime: %d\n" % self.tx.locktime))
|
|
|
|
|
2016-01-17 05:12:57 -08:00
|
|
|
vbox.addWidget(QLabel(_("Inputs") + ' (%d)'%len(self.tx.inputs())))
|
2015-03-28 12:26:30 -07:00
|
|
|
|
|
|
|
ext = QTextCharFormat()
|
2015-06-25 19:55:20 -07:00
|
|
|
rec = QTextCharFormat()
|
|
|
|
rec.setBackground(QBrush(QColor("lightgreen")))
|
|
|
|
rec.setToolTip(_("Wallet receive address"))
|
|
|
|
chg = QTextCharFormat()
|
|
|
|
chg.setBackground(QBrush(QColor("yellow")))
|
|
|
|
chg.setToolTip(_("Wallet change address"))
|
|
|
|
|
|
|
|
def text_format(addr):
|
|
|
|
if self.wallet.is_mine(addr):
|
|
|
|
return chg if self.wallet.is_change(addr) else rec
|
|
|
|
return ext
|
2015-03-28 12:26:30 -07:00
|
|
|
|
2015-12-11 16:41:31 -08:00
|
|
|
def format_amount(amt):
|
2016-01-16 20:36:40 -08:00
|
|
|
return self.main_window.format_amount(amt, whitespaces = True)
|
2015-12-11 16:41:31 -08:00
|
|
|
|
2014-03-02 09:11:56 -08:00
|
|
|
i_text = QTextEdit()
|
2014-10-23 07:45:51 -07:00
|
|
|
i_text.setFont(QFont(MONOSPACE_FONT))
|
2013-09-15 04:29:09 -07:00
|
|
|
i_text.setReadOnly(True)
|
|
|
|
i_text.setMaximumHeight(100)
|
2015-03-28 12:26:30 -07:00
|
|
|
cursor = i_text.textCursor()
|
2016-01-17 05:12:57 -08:00
|
|
|
for x in self.tx.inputs():
|
2015-03-28 12:26:30 -07:00
|
|
|
if x.get('is_coinbase'):
|
|
|
|
cursor.insertText('coinbase')
|
|
|
|
else:
|
2015-03-28 12:53:49 -07:00
|
|
|
prevout_hash = x.get('prevout_hash')
|
|
|
|
prevout_n = x.get('prevout_n')
|
2015-06-26 04:15:51 -07:00
|
|
|
cursor.insertText(prevout_hash[0:8] + '...', ext)
|
2015-06-26 19:01:42 -07:00
|
|
|
cursor.insertText(prevout_hash[-8:] + ":%-4d " % prevout_n, ext)
|
2015-03-28 12:26:30 -07:00
|
|
|
addr = x.get('address')
|
2015-03-28 12:53:49 -07:00
|
|
|
if addr == "(pubkey)":
|
|
|
|
_addr = self.wallet.find_pay_to_pubkey_address(prevout_hash, prevout_n)
|
|
|
|
if _addr:
|
|
|
|
addr = _addr
|
2015-05-02 07:17:50 -07:00
|
|
|
if addr is None:
|
|
|
|
addr = _('unknown')
|
2015-06-25 19:55:20 -07:00
|
|
|
cursor.insertText(addr, text_format(addr))
|
2015-12-12 00:52:19 -08:00
|
|
|
if x.get('value'):
|
|
|
|
cursor.insertText(format_amount(x['value']), ext)
|
2015-03-28 12:26:30 -07:00
|
|
|
cursor.insertBlock()
|
2013-09-14 12:07:54 -07:00
|
|
|
|
2015-03-28 12:26:30 -07:00
|
|
|
vbox.addWidget(i_text)
|
2016-01-17 05:12:57 -08:00
|
|
|
vbox.addWidget(QLabel(_("Outputs") + ' (%d)'%len(self.tx.outputs())))
|
2013-09-15 04:29:09 -07:00
|
|
|
o_text = QTextEdit()
|
2014-10-23 07:45:51 -07:00
|
|
|
o_text.setFont(QFont(MONOSPACE_FONT))
|
2013-09-15 04:29:09 -07:00
|
|
|
o_text.setReadOnly(True)
|
|
|
|
o_text.setMaximumHeight(100)
|
2015-03-28 12:26:30 -07:00
|
|
|
cursor = o_text.textCursor()
|
|
|
|
for addr, v in self.tx.get_outputs():
|
2015-06-25 19:55:20 -07:00
|
|
|
cursor.insertText(addr, text_format(addr))
|
2015-03-28 12:26:30 -07:00
|
|
|
if v is not None:
|
|
|
|
cursor.insertText('\t', ext)
|
2015-12-11 16:41:31 -08:00
|
|
|
cursor.insertText(format_amount(v), ext)
|
2015-03-28 12:26:30 -07:00
|
|
|
cursor.insertBlock()
|
2013-09-15 04:29:09 -07:00
|
|
|
vbox.addWidget(o_text)
|