Skip to content
Snippets Groups Projects
Commit 75be5e6d authored by inso's avatar inso
Browse files

Preparing release of 0.8.1

parent 29299442
No related branches found
No related tags found
No related merge requests found
...@@ -41,7 +41,7 @@ Qt Client for [Ucoin](http://www.ucoin.io) project. ...@@ -41,7 +41,7 @@ Qt Client for [Ucoin](http://www.ucoin.io) project.
* The executable is generated in "build" folder, named "cutecoin" * The executable is generated in "build" folder, named "cutecoin"
### How to download latest release ### How to download latest release
* Go to the [current release](https://github.com/ucoin-io/cutecoin/releases/tag/0.8) * Go to the [current release](https://github.com/ucoin-io/cutecoin/releases/tag/0.8.1)
* Download the package corresponding to your operating system * Download the package corresponding to your operating system
* Unzip and start "cutecoin" :) * Unzip and start "cutecoin" :)
* Join our beta community by contacting us on ucoin forums : forum.ucoin.io * Join our beta community by contacting us on ucoin forums : forum.ucoin.io
__version_info__ = ('0', '8', '0') __version_info__ = ('0', '8', '1')
__version__ = '.'.join(__version_info__) __version__ = '.'.join(__version_info__)
...@@ -40,7 +40,6 @@ class Transfer(object): ...@@ -40,7 +40,6 @@ class Transfer(object):
@classmethod @classmethod
def create_validated(cls, txdoc, metadata): def create_validated(cls, txdoc, metadata):
logging.debug("VALIDATED : {0}".format(metadata))
return cls(txdoc, Transfer.VALIDATED, metadata) return cls(txdoc, Transfer.VALIDATED, metadata)
@property @property
......
...@@ -93,8 +93,6 @@ class Cache(): ...@@ -93,8 +93,6 @@ class Cache():
receivers = [o.pubkey for o in tx.outputs receivers = [o.pubkey for o in tx.outputs
if o.pubkey != metadata['issuer']] if o.pubkey != metadata['issuer']]
metadata['receiver'] = receivers[0] metadata['receiver'] = receivers[0]
logging.debug("RECEIVER = {0}".format(metadata['receiver']))
in_issuers = len([i for i in tx.issuers in_issuers = len([i for i in tx.issuers
if i == self.wallet.pubkey]) > 0 if i == self.wallet.pubkey]) > 0
if in_issuers: if in_issuers:
......
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