Skip to content
Snippets Groups Projects
Commit 529476f5 authored by pharesim's avatar pharesim
Browse files

cleanup

parent b38705ed
No related branches found
No related tags found
No related merge requests found
...@@ -68,7 +68,7 @@ author = 'pharesim@protonmail.com' ...@@ -68,7 +68,7 @@ author = 'pharesim@protonmail.com'
# The short X.Y version. # The short X.Y version.
version = '0.9' version = '0.9'
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
release = '0.9.3' release = '0.9.3.1'
# The language for content autogenerated by Sphinx. Refer to documentation # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.
......
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
from .hive import Hive from .hive import Hive
__version__ = '0.9.3' __version__ = '0.9.3.1'
...@@ -1056,11 +1056,9 @@ class Commit(object): ...@@ -1056,11 +1056,9 @@ class Commit(object):
}) })
tb = TransactionBuilder(None,hived_instance=self.hived,wallet_instance=self.wallet,no_broadcast=self.no_broadcast,expiration=self.expiration) tb = TransactionBuilder(None,hived_instance=self.hived,wallet_instance=self.wallet,no_broadcast=self.no_broadcast,expiration=self.expiration)
tb.appendOps([op]) tb.appendOps([op])
tb.addSigningInformation(account, "active")
tb.appendWif(signing_key) tb.appendWif(signing_key)
tb.sign() tb.sign()
return tb.broadcast() return tb.broadcast()
#return self.finalizeOp(op, account, "active")
def decode_memo(self, enc_memo): def decode_memo(self, enc_memo):
""" Try to decode an encrypted memo """ Try to decode an encrypted memo
......
...@@ -14,7 +14,7 @@ from setuptools.command.test import test as TestCommand ...@@ -14,7 +14,7 @@ from setuptools.command.test import test as TestCommand
# Package meta-data. # Package meta-data.
NAME = 'hivepy' NAME = 'hivepy'
VERSION = '0.9.3' VERSION = '0.9.3.1'
DESCRIPTION = 'A python hive library.' DESCRIPTION = 'A python hive library.'
URL = 'https://github.com/pharesim/hive-python' URL = 'https://github.com/pharesim/hive-python'
EMAIL = 'pharesim@protonmail.com' EMAIL = 'pharesim@protonmail.com'
......
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