From 84cd3598d6f21315c37289d7e7210bcf3ff9ca1f Mon Sep 17 00:00:00 2001 From: gabrielfior Date: Fri, 6 Dec 2024 21:59:17 -0300 Subject: [PATCH] Simple comment for triggering docker build --- prediction_market_agent/db/blockchain_transaction_fetcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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