From 7f094053352250165a88b35bc0f0ca0bc076d245 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Tue, 9 Oct 2018 23:39:00 -0400 Subject: [PATCH] txi (txoid) index added --- torba/basedatabase.py | 1 + 1 file changed, 1 insertion(+) diff --git a/torba/basedatabase.py b/torba/basedatabase.py index 8d92a8f11..03b353f40 100644 --- a/torba/basedatabase.py +++ b/torba/basedatabase.py @@ -218,6 +218,7 @@ class BaseDatabase(SQLiteMixin): """ CREATE_TXI_INDEX = """ create index if not exists txi_address_idx on txi (address); + create index if not exists txi_txoid_idx on txi (txoid); """ CREATE_TABLES_QUERY = (