txi (txoid) index added

This commit is contained in:
Lex Berezhny 2018-10-09 23:39:00 -04:00
parent e37da81dc6
commit 7f09405335

View file

@ -218,6 +218,7 @@ class BaseDatabase(SQLiteMixin):
""" """
CREATE_TXI_INDEX = """ CREATE_TXI_INDEX = """
create index if not exists txi_address_idx on txi (address); 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 = ( CREATE_TABLES_QUERY = (