Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
harisang committed May 10, 2023
1 parent 7a5ba04 commit ff32fc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/quasimodo_ebbo/on_chain_surplus.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def get_solver_response(order_id: str, bucket_response: Any) -> Tuple[Any, Any]:
# make solution request to quasimodo
try:
solution = requests.post(solver_url, data=bucket_response_json, timeout=30)
except requests.exceptions.RequestException as e:
except requests.exceptions.RequestException:
# return empty response
return {"prices": []}, None
solution_json = solution.json()
Expand Down

0 comments on commit ff32fc6

Please sign in to comment.