Skip to content
This repository was archived by the owner on Nov 17, 2025. It is now read-only.

Commit bdcf159

Browse files
authored
Merge pull request #305 from bancorprotocol/bugfix-eval
Add eval back due to bug
2 parents d36287b + a1c6f3d commit bdcf159

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fastlane_bot/events/async_event_update_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ def get_pool_info(
149149
tkn1: Dict[str, Any],
150150
pool_data_keys: frozenset,
151151
) -> Dict[str, Any]:
152-
fee_raw = pool["fee"]
152+
fee_raw = eval(str(pool["fee"]))
153153
pool_info = {
154154
"exchange_name": pool["exchange_name"],
155155
"address": pool["address"],

0 commit comments

Comments
 (0)