From 1a802469f584fb39b6d7c16e48e2d857637db7c7 Mon Sep 17 00:00:00 2001 From: Jack Robison Date: Sun, 12 Jan 2020 16:11:57 -0500 Subject: [PATCH] missing fetchall() --- lbry/wallet/database.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lbry/wallet/database.py b/lbry/wallet/database.py index eec048a2d..738ecba72 100644 --- a/lbry/wallet/database.py +++ b/lbry/wallet/database.py @@ -417,7 +417,7 @@ class Database(SQLiteMixin): }, 'txid = ?', (tx.id,))) def _transaction_io(self, conn: sqlite3.Connection, tx: Transaction, address, txhash): - conn.execute(*self._insert_sql('tx', self.tx_to_row(tx), replace=True)) + conn.execute(*self._insert_sql('tx', self.tx_to_row(tx), replace=True)).fetchall() for txo in tx.outputs: if txo.script.is_pay_pubkey_hash and txo.pubkey_hash == txhash: