From 75be5e6d9042e08c8259be6e7009cc47026d31f2 Mon Sep 17 00:00:00 2001
From: Inso <insomniak.fr@gmail.com>
Date: Sun, 15 Feb 2015 13:07:19 +0100
Subject: [PATCH] Preparing release of 0.8.1

---
 README.md                     | 2 +-
 src/cutecoin/__init__.py      | 2 +-
 src/cutecoin/core/transfer.py | 1 -
 src/cutecoin/core/wallet.py   | 2 --
 4 files changed, 2 insertions(+), 5 deletions(-)

diff --git a/README.md b/README.md
index bea84594..f3cfcdb7 100644
--- a/README.md
+++ b/README.md
@@ -41,7 +41,7 @@ Qt Client for [Ucoin](http://www.ucoin.io) project.
   * The executable is generated in "build" folder, named "cutecoin"
 
 ### 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
   * Unzip and start "cutecoin" :)
   * Join our beta community by contacting us on ucoin forums : forum.ucoin.io
diff --git a/src/cutecoin/__init__.py b/src/cutecoin/__init__.py
index d939c5ff..ad18e517 100644
--- a/src/cutecoin/__init__.py
+++ b/src/cutecoin/__init__.py
@@ -1,2 +1,2 @@
-__version_info__ = ('0', '8', '0')
+__version_info__ = ('0', '8', '1')
 __version__ = '.'.join(__version_info__)
diff --git a/src/cutecoin/core/transfer.py b/src/cutecoin/core/transfer.py
index abd3b1ff..5979b661 100644
--- a/src/cutecoin/core/transfer.py
+++ b/src/cutecoin/core/transfer.py
@@ -40,7 +40,6 @@ class Transfer(object):
 
     @classmethod
     def create_validated(cls, txdoc, metadata):
-        logging.debug("VALIDATED : {0}".format(metadata))
         return cls(txdoc, Transfer.VALIDATED, metadata)
 
     @property
diff --git a/src/cutecoin/core/wallet.py b/src/cutecoin/core/wallet.py
index 47c3853e..dcdbbc36 100644
--- a/src/cutecoin/core/wallet.py
+++ b/src/cutecoin/core/wallet.py
@@ -93,8 +93,6 @@ class Cache():
                     receivers = [o.pubkey for o in tx.outputs
                                  if o.pubkey != metadata['issuer']]
                     metadata['receiver'] = receivers[0]
-                    logging.debug("RECEIVER = {0}".format(metadata['receiver']))
-
                     in_issuers = len([i for i in tx.issuers
                                  if i == self.wallet.pubkey]) > 0
                     if in_issuers:
-- 
GitLab