Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: deduplicate internal transfers in db #707

Merged
merged 1 commit into from
Apr 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions scripts/exporters/treasury_transactions.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,10 @@ async def load_new_txs(start_block: Block, end_block: Block) -> int:
futs = [
asyncio.create_task(insert_treasury_tx(entry))
async for entry in treasury.ledger._get_and_yield(start_block, end_block)
if entry.value
if not isinstance(entry, _Done) and entry.value
]
return sum(await tqdm_asyncio.gather(*futs, desc="Insert Txs to Postgres"))
to_sort = sum(await tqdm_asyncio.gather(*futs, desc="Insert Txs to Postgres"))
return to_sort


# NOTE: Things get sketchy when we bump these higher
Expand Down
Loading