-
Notifications
You must be signed in to change notification settings - Fork 86
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
Error when running script #83
Comments
That happens because the source or destination address isn't a valid base58 or bech32 address. Double check that the order of parameters on the command line is correct. What's the command line you're using? (with data censored) |
Hi ymgve, Thanks for responding. My command was (with Private data removed) |
I checked both address and the problem is the Destination address. The destination address is an exchange address. I just checked it and it actually had bitcoincash: in front of the address string. |
If the part after "bitcoincash:" is all lowercase and numbers, and doesn't start with "1" or "3", it's a new style BCH address that has to be converted, with something like https://bch.btc.com/tools/address-converter |
Great. Thanks. Thank you so much for your help. |
Hi ymgve, Well the above error is gone and I have run the script and received a new error. These are the last few lines of the script output Connecting to ('seed.bitprim.org', 8333) ... Connection failed with: gaierror(11001, 'getaddrinfo failed') Now what is the problem? |
Seems like the seed addresses changed in the BCH/ABC split. Try replacing them in the script with these instead: seed.flowee.cash, seed-bch.bitcoinforks.org, btccash-seeder.bitcoinunlimited.info, seed.bchd.cash, seed.bch.loping.net, dnsseed.electroncash.de Alternatively, you can put the raw transaction hex data that's printed by the script and submit it with https://blockchair.com/broadcast - just be sure to select the Bitcoin Cash network first. |
Ok. I will try |
I updated the script and it is now working just fine. Thanks for your help. Really appreciate it. |
Hi I have been running this as per instruction found at https://forkdrop.io/running-bitcoin-fork-claimer-on-windows
I get the following error.
Traceback (most recent call last):
File "claimer.py", line 1526, in
rawaddr = b58decode(destaddr)
File "claimer.py", line 68, in b58decode
n = n * 58 + b58ab.index(c)
ValueError: substring not found
I have run this using the TAILS linux distribution and also on windows 10. I get the same error on both.
On Windows, I even downgraded Python from the latest to the same version as was used in the forkdrop.io guide. Same error.
Any suggestions?
The text was updated successfully, but these errors were encountered: