Advertisement
TIMSTICLES_

Mercatox withdraw issue fix

Jan 17th, 2018
1,250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. (0) Instal Google Chrome and login to Mercatox
  2. (1) Go to "Transaction history"
  3. (2) Find the transaction ID of the pending transaction
  4. (3) copy the following Javascript code into notepad
  5.  
  6. $.post(
  7. '/wallet/cancel-withdraw',
  8. {
  9. _csrf: _csrf,
  10. id: "Transaction ID"
  11. }, function (data) {
  12. if (data) {
  13. alert("cancelling");
  14. } else {
  15. notify('Error');
  16. }
  17. }
  18. );
  19.  
  20. Replace "Transaction ID" by your pending transaction ID; make sure the "" are still there
  21.  
  22. (4) Right click on the screen in Chrome, go to "Inspect", then to console
  23.  
  24. (5) Paste the Javascript code and run, message should pop up to say your withdrawl has been cancelled!
  25.  
  26. (6) Withdraw your funds again (if it gets stuck a second time just repeat till it works...
  27.  
  28. Once you submit a new withdraw wait 1 minute before cancelling again.I advise withdrawing in BCH as it worked for me and is fast and cheap
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement