chore: drop mempool table
This commit is contained in:
parent
798b8e5fdf
commit
a0450cbdd9
1 changed files with 6 additions and 4 deletions
|
|
@ -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;")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue