Skip to content
This repository was archived by the owner on Jun 17, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions fee_allocator/accounting/recon.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,8 @@ def generate_and_save_input_csv(

output = []
for pool_id, fee_item in fees.items():
if mapped_pools_info.get(pool_id) is None:
continue
# Aura incentives
output.append(
{
Expand Down
14 changes: 7 additions & 7 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,13 +123,13 @@ def main() -> None:
target_aura_vebal_share = calculate_aura_vebal_share(
web3_instances["mainnet"], _target_mainnet_block
)
recon_and_validate(
collected_fees,
fees_to_distribute,
ts_now,
ts_in_the_past,
target_aura_vebal_share,
)
# recon_and_validate(
# collected_fees,
# fees_to_distribute,
# ts_now,
# ts_in_the_past,
# target_aura_vebal_share,
# )
csvfile = generate_and_save_input_csv(collected_fees, ts_now, mapped_pools_info)
if output_file_name != "current_fees.csv":
generate_payload(web3_instances["mainnet"], csvfile)
Expand Down