From a7838b80c335affc6f91fae6c33cf013415da69a Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Tue, 16 Oct 2018 21:49:49 -0400 Subject: [PATCH] removed extraneous db.commit() --- torba/basedatabase.py | 1 - 1 file changed, 1 deletion(-) diff --git a/torba/basedatabase.py b/torba/basedatabase.py index 2f4579019..a96b11be3 100644 --- a/torba/basedatabase.py +++ b/torba/basedatabase.py @@ -285,7 +285,6 @@ class BaseDatabase(SQLiteMixin): async def release_outputs(self, txos): await self.reserve_outputs(txos, is_reserved=False) - await self.db.commit() async def rewind_blockchain(self, above_height): # pylint: disable=no-self-use # TODO: