diff --git a/fee_allocator/accounting/recon.py b/fee_allocator/accounting/recon.py index 30257a2e..b669f016 100644 --- a/fee_allocator/accounting/recon.py +++ b/fee_allocator/accounting/recon.py @@ -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( { diff --git a/main.py b/main.py index 43f0dbb5..93ef86e8 100644 --- a/main.py +++ b/main.py @@ -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)