Skip to content
This repository has been archived by the owner on Dec 20, 2024. It is now read-only.

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
harisang committed Nov 21, 2024
1 parent a555571 commit fc2c654
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,12 @@
from src.post.aws import AWSClient
from src.sync import sync_app_data
from src.sync import sync_price_feed
from src.sync.config import SyncConfig, AppDataSyncConfig, PriceFeedSyncConfig
from src.sync.config import (
SyncConfig,
AppDataSyncConfig,
PriceFeedSyncConfig,
BatchDataSyncConfig,
)
from src.sync.order_rewards import sync_order_rewards, sync_batch_rewards
from src.sync.batch_data import sync_batch_data

Expand Down Expand Up @@ -109,7 +114,7 @@ def main() -> None:
web3,
orderbook,
dune=dune,
config=PriceFeedSyncConfig(table),
config=BatchDataSyncConfig(table),
dry_run=args.dry_run,
)
)
Expand Down

0 comments on commit fc2c654

Please sign in to comment.