Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#BGSTB-23: change check amount to 64 bit double instead of 32 bit float #517

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
change check amount to 64 bit double instead of 32 bit float
  • Loading branch information
andrewguterres committed Feb 20, 2025
commit c4b160609147feda6b8c97c5f059947b8a400bc3
2 changes: 1 addition & 1 deletion resources/checks/models/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ allOf:
amount:
description: The payment amount to be sent in US dollars.
type: number
format: float
format: double
multipleOf: 0.01
maximum: 999999.99

Expand Down
2 changes: 1 addition & 1 deletion resources/checks/models/check_editable_props.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ allOf:
The payment amount to be sent in US dollars. Amounts will be rounded
to two decimal places.
type: number
format: float
format: double
maximum: 999999.99

logo:
Expand Down
Loading