Skip to content

Commit

Permalink
quick fix
Browse files Browse the repository at this point in the history
  • Loading branch information
prettyirrelevant committed Aug 31, 2023
1 parent 5db47c4 commit 62649fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/bridgebloc/apps/conversions/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ def send_to_recipient_using_circle_api() -> None:
with transaction.atomic():
circle_client = get_circle_api_client(step.conversion.destination_chain)
response = circle_client.make_withdrawal(
amount=step.conversion.actual_amount,
amount=f'{step.conversion.actual_amount:.2f}',
master_wallet_id=settings.CIRCLE_MASTER_WALLET_ID,
chain=step.conversion.destination_chain.to_circle(),
destination_address=step.conversion.destination_address,
Expand Down

0 comments on commit 62649fa

Please sign in to comment.