We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
TXIDs of input transactions are loaded from API in an incorrect byte order.
The text was updated successfully, but these errors were encountered:
utxo txid's are in reverse order in case of https://coinb.in/api/, whereas https://explorer.bitcoingold.org they are not. so , @line 959 of coinbin.js
var txid = ((tx).match(/.{1,2}/g).reverse()).join("")+''; should be replaced by var txid = tx;
Sorry, something went wrong.
Fix poolgold#5 Incorrect inputs' transaction hashes handling
cf42ae0
#6 Please test.
No branches or pull requests
TXIDs of input transactions are loaded from API in an incorrect byte order.
The text was updated successfully, but these errors were encountered: