Skip to content
This repository has been archived by the owner on Sep 12, 2024. It is now read-only.

Commit

Permalink
Correct variable use in test
Browse files Browse the repository at this point in the history
  • Loading branch information
Jesse Claven committed Jan 24, 2022
1 parent db5f94e commit ffcf61e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/book-and-change.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@

payments = [
{
"currency": selected_offer.total_currency,
"amount": selected_offer.total_amount,
"currency": priced_offer.total_currency,
"amount": priced_offer.total_amount,
"type": "balance",
}
]
Expand Down

0 comments on commit ffcf61e

Please sign in to comment.