diff --git a/prediction_market_agent/db/blockchain_transaction_fetcher.py b/prediction_market_agent/db/blockchain_transaction_fetcher.py index 78b42950..0553ca71 100644 --- a/prediction_market_agent/db/blockchain_transaction_fetcher.py +++ b/prediction_market_agent/db/blockchain_transaction_fetcher.py @@ -48,7 +48,7 @@ def fetch_unseen_transactions_df( existing_hashes = self.blockchain_table_handler.fetch_all_transaction_hashes( consumer_address=consumer_address ) - # Filter out existing hashes - hashes by default lowercase + # Filter out existing hashes - hashes are by default lowercase df = df.filter(~pl.col("hash").is_in(existing_hashes)) return df