Skip to content
Snippets Groups Projects
Commit 328e4e74 authored by inso's avatar inso
Browse files

Some fixes in transactions

parent 0f1f92f2
No related branches found
No related tags found
No related merge requests found
...@@ -10,6 +10,7 @@ from ucoinpy.documents.transaction import InputSource, OutputSource, Transaction ...@@ -10,6 +10,7 @@ from ucoinpy.documents.transaction import InputSource, OutputSource, Transaction
from ucoinpy.key import SigningKey from ucoinpy.key import SigningKey
from ..tools.exceptions import NotEnoughMoneyError from ..tools.exceptions import NotEnoughMoneyError
import logging import logging
import base64
class Wallet(object): class Wallet(object):
...@@ -117,9 +118,9 @@ class Wallet(object): ...@@ -117,9 +118,9 @@ class Wallet(object):
key = SigningKey("{0}{1}".format(salt, self.walletid), password) key = SigningKey("{0}{1}".format(salt, self.walletid), password)
logging.debug("Sender pubkey:{0}".format(key.pubkey)) logging.debug("Sender pubkey:{0}".format(key.pubkey))
signing = key.signature(bytes(tx.raw(), 'ascii')) signing = base64.b64encode(key.signature(bytes(tx.raw(), 'ascii')))
logging.debug("Signature : {0}".format(str(signing.signature))) logging.debug("Signature : {0}".format(signing.decode("ascii")))
tx.signatures = [str(signing.signature, 'ascii')] tx.signatures = [signing.decode("ascii")]
logging.debug("Transaction : {0}".format(tx.signed_raw())) logging.debug("Transaction : {0}".format(tx.signed_raw()))
community.post(bma.tx.Process, community.post(bma.tx.Process,
post_args={'transaction': tx.signed_raw()}) post_args={'transaction': tx.signed_raw()})
......
...@@ -53,6 +53,10 @@ class MainWindow(QMainWindow, Ui_MainWindow): ...@@ -53,6 +53,10 @@ class MainWindow(QMainWindow, Ui_MainWindow):
dialog.accepted.connect(self.refresh_wallets) dialog.accepted.connect(self.refresh_wallets)
dialog.exec_() dialog.exec_()
def refresh_wallets(self):
currency_tab = self.currencies_tabwidget.currentWidget()
currency_tab.refresh_wallets()
''' '''
Refresh main window Refresh main window
When the selected account changes, all the widgets When the selected account changes, all the widgets
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment