Skip to content
This repository was archived by the owner on Apr 14, 2026. It is now read-only.

Commit d8c6350

Browse files
authored
Merge pull request #87 from BalancerMaxis/v3-fee-check
add v3 fee check, fix v2 fee filename
2 parents e44e424 + f2959f3 commit d8c6350

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/get_mimic_report.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ jobs:
4242
Checks before merging:
4343
- [ ] assert total wei of the json == [wei onchain](https://etherscan.io/token/0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48?a=0x7c68c42de679ffb0f16216154c996c354cf1161b)
4444
- [ ] all active chains present
45+
- [ ] v3 fees are uploaded (v3_fees_{start_date}_{end_date}.json)
4546
branch: gha-mimic-fees
4647
branch-suffix: timestamp
4748
delete-branch: true

fee_allocator/fees_collected/get_report.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def get_report(start_date, end_date):
4444

4545
report = get_report(yesterday.strftime("%Y-%m-%d"), today.strftime("%Y-%m-%d"))
4646
with open(
47-
f"fee_allocator/fees_collected/fees_{epoch_start.strftime('%Y-%m-%d')}_{today.strftime('%Y-%m-%d')}.json",
47+
f"fee_allocator/fees_collected/v2_fees_{epoch_start.strftime('%Y-%m-%d')}_{today.strftime('%Y-%m-%d')}.json",
4848
"w",
4949
) as f:
5050
json.dump(report, f, indent=2)

0 commit comments

Comments
 (0)