-
Notifications
You must be signed in to change notification settings - Fork 29
Include USDT payments #400
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
Merged
Merged
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
afb512b
Initial USDT changes
DarrenWestwood edc112a
Fix failing test
DarrenWestwood fa933b0
Refactor loading checkout template for code reuse
DarrenWestwood 5649873
Refactor usage of decimal multiplier
DarrenWestwood c9b8be8
Update test_setup to handle store cryptos
DarrenWestwood 20f08d2
Update fetching checkout cryptos
DarrenWestwood 1e0659a
Fix failing test
DarrenWestwood c26d944
Improve fetching active currencies
DarrenWestwood ae10521
Fix usdt logo on checkout
DarrenWestwood 679b27a
Fix vertical text height on select crypto
DarrenWestwood 0fb776d
Remove old crypto images
DarrenWestwood a52cf0b
Include testnet check in callbacks
DarrenWestwood 405a638
Replace NULL txid with empty string before alter primary key
DarrenWestwood 01454a2
Handle errors on inserting order to database
DarrenWestwood 2f1bee1
Handle usdt txid link in payment details
DarrenWestwood ea9fb48
Include check for body error message
DarrenWestwood 59de15a
Remove check for deprecated error code
DarrenWestwood dddde72
Remove auto update callback url if partial match
DarrenWestwood 3710713
Set default title to Crypto
DarrenWestwood dbd3455
Rename USDT Testnet Mode setting
DarrenWestwood d0584af
Minor text change
shivaenigma File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Existing installations upgrading from < v1.5 may have BTC/BCH orders with
txid = NULL. The migration tries to addtxidto the PRIMARY KEY, which fails silently and as a result db stays in old schema whileblockonomics_db_versionclaims "1.5".Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated function to replace NULL txid with empty string before altering the primary key: 405a638