Browse Source

make tx.deserialize preserve existing inputs

283
ThomasV 9 years ago
parent
commit
5c2235e54b
  1. 4
      gui/qt/transaction_dialog.py
  2. 3
      lib/transaction.py

4
gui/qt/transaction_dialog.py

@ -45,7 +45,7 @@ class TxDialog(QWidget):
Pass desc to give a description for txs not yet in the wallet.
'''
self.tx = tx
tx_dict = tx.as_dict()
self.tx.deserialize()
self.parent = parent
self.wallet = parent.wallet
self.prompt_if_unsaved = prompt_if_unsaved
@ -157,7 +157,7 @@ class TxDialog(QWidget):
fileName = self.parent.getSaveFileName(_("Select where to save your signed transaction"), name, "*.txn")
if fileName:
with open(fileName, "w+") as f:
f.write(json.dumps(self.tx.as_dict(),indent=4) + '\n')
f.write(json.dumps(self.tx.as_dict(), indent=4) + '\n')
self.show_message(_("Transaction saved successfully"))
self.saved = True

3
lib/transaction.py

@ -482,6 +482,7 @@ class Transaction:
def __init__(self, raw):
self.raw = raw
self.inputs = None
def update(self, raw):
self.raw = raw
@ -518,6 +519,8 @@ class Transaction:
def deserialize(self):
if self.inputs is not None:
return
d = deserialize(self.raw)
self.inputs = d['inputs']
self.outputs = [(x['type'], x['address'], x['value']) for x in d['outputs']]

Loading…
Cancel
Save