chore: drop mempool table

This commit is contained in:
Vlad Stan 2022-08-04 12:19:31 +03:00
parent 798b8e5fdf
commit a0450cbdd9

View File

@ -87,7 +87,9 @@ async def m005_add_network_column_to_wallets(db):
"ALTER TABLE watchonly.wallets ADD COLUMN network TEXT DEFAULT 'Mainnet';"
)
### TODO: fix statspay dependcy first
# await db.execute(
# "DROP TABLE watchonly.wallets;"
# )
async def m006_drop_mempool_table(db):
"""
Mempool data is now part of `config`
"""
await db.execute("DROP TABLE watchonly.mempool;")