diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 66834fd7db7247825d846955aff8356ce76cbf82..7583dfa7324a098b167cd42260359e6de734ec22 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -5,11 +5,12 @@ Changelog
 * Add option add_tor to config storage, which allows it to use beempy in tails
 * Switch from pyyaml to ruamel.yaml
 * Remove Events requirements, beem.notify and beemapi.websocket, as it is not well tested and there are no websocket api nodes available on hive
-* Remove unnecessary requirements (pylibscrypt and future
+* Remove unnecessary requirements (pylibscrypt and future)
 * add new node (fin.hive.3speak.co) and change change rpc.esteem.app to rpc.ecency.com
 * Replace diff_match_patch by difflib and add unit tests
-* Increase timeout and retry cound in beempy
+* Increase timeout and retry count in beempy
 * Remove obsolete replace_hive_by_steem parameter
+* skip_account_check added to account.transfer and account.transfer_to_vesting
 
 0.24.13
 -------
diff --git a/beem/blockchaininstance.py b/beem/blockchaininstance.py
index 3af65c91250d7fb3b38173d653f94de45031dcaf..80dd01e3f1f02661671fc23b8a9d2b2b2957fe7e 100644
--- a/beem/blockchaininstance.py
+++ b/beem/blockchaininstance.py
@@ -10,7 +10,7 @@ from beemgraphenebase.py23 import bytes_types, integer_types, string_types, text
 from datetime import datetime, timedelta, date
 from beemapi.noderpc import NodeRPC
 from beemgraphenebase.account import PrivateKey, PublicKey
-from beembase import transactions, operations
+from beembase import operations
 from beemgraphenebase.chains import known_chains
 from .storage import get_default_config_store
 from .account import Account
diff --git a/beemstorage/sqlite.py b/beemstorage/sqlite.py
index fff61293f71d53dec99526bb93723e409ca4fe83..336a9931381270fb79916b024c69797a1e64b43d 100644
--- a/beemstorage/sqlite.py
+++ b/beemstorage/sqlite.py
@@ -156,7 +156,7 @@ class SQLiteCommon(object):
             cursor = connection.cursor()
             cursor.execute(*query)
             connection.commit()
-        except:
+        except Exception:
             connection.close()
             raise
         ret = None
@@ -207,10 +207,10 @@ class SQLiteStore(SQLiteFile, SQLiteCommon, StoreInterface):
         """
         query = (
             "SELECT {} FROM {} WHERE {}=?".format(
-                self.__value__,
-                self.__tablename__,
-                self.__key__
-            ), (key,))
+                self.__value__, self.__tablename__, self.__key__
+            ),
+            (key,),
+        )
         return True if self.sql_fetchone(query) else False
 
     def __setitem__(self, key, value):
@@ -242,10 +242,10 @@ class SQLiteStore(SQLiteFile, SQLiteCommon, StoreInterface):
         """
         query = (
             "SELECT {} FROM {} WHERE {}=?".format(
-                self.__value__,
-                self.__tablename__,
-                self.__key__
-            ), (key,))
+                self.__value__, self.__tablename__, self.__key__
+            ),
+            (key,),
+        )
         result = self.sql_fetchone(query)
         if result:
             return result[0]
@@ -261,15 +261,13 @@ class SQLiteStore(SQLiteFile, SQLiteCommon, StoreInterface):
         return iter(self.keys())
 
     def keys(self):
-        query = ("SELECT {} from {}".format(
-            self.__key__,
-            self.__tablename__), )
+        query = ("SELECT {} from {}".format(self.__key__, self.__tablename__),)
         return [x[0] for x in self.sql_fetchall(query)]
 
     def __len__(self):
         """ return lenght of store
         """
-        query = ("SELECT id from {}".format(self.__tablename__), )
+        query = ("SELECT id from {}".format(self.__tablename__),)
         return len(self.sql_fetchall(query))
 
     def __contains__(self, key):
@@ -287,10 +285,11 @@ class SQLiteStore(SQLiteFile, SQLiteCommon, StoreInterface):
     def items(self):
         """ returns all items off the store as tuples
         """
-        query = ("SELECT {}, {} from {}".format(
-            self.__key__,
-            self.__value__,
-            self.__tablename__), )
+        query = (
+            "SELECT {}, {} from {}".format(
+                self.__key__, self.__value__, self.__tablename__
+            ),
+        )
         r = []
         for key, value in self.sql_fetchall(query):
             r.append((key, value))
@@ -314,39 +313,37 @@ class SQLiteStore(SQLiteFile, SQLiteCommon, StoreInterface):
             :param str value: Value
         """
         query = (
-            "DELETE FROM {} WHERE {}=?".format(
-                self.__tablename__,
-                self.__key__
-            ), (key,))
+            "DELETE FROM {} WHERE {}=?".format(self.__tablename__, self.__key__),
+            (key,),
+        )
         self.sql_execute(query)
 
     def wipe(self):
         """ Wipe the store
         """
-        query = ("DELETE FROM {}".format(self.__tablename__), )
+        query = ("DELETE FROM {}".format(self.__tablename__),)
         self.sql_execute(query)
 
     def exists(self):
         """ Check if the database table exists
         """
-        query = ("SELECT name FROM sqlite_master " +
-                 "WHERE type='table' AND name=?",
-                 (self.__tablename__, ))
+        query = (
+            "SELECT name FROM sqlite_master " + "WHERE type='table' AND name=?",
+            (self.__tablename__,),
+        )
         return True if self.sql_fetchone(query) else False
 
     def create(self):  # pragma: no cover
         """ Create the new table in the SQLite database
         """
-        query = ((
-            """
+        query = (
+            (
+                """
             CREATE TABLE {} (
                 id INTEGER PRIMARY KEY AUTOINCREMENT,
                 {} STRING(256),
                 {} STRING(256)
             )"""
-        ).format(
-            self.__tablename__,
-            self.__key__,
-            self.__value__
-        ), )
+            ).format(self.__tablename__, self.__key__, self.__value__),
+        )
         self.sql_execute(query)