-
Notifications
You must be signed in to change notification settings - Fork 498
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
AttributeError: 'Spendable' object has no attribute 'address' #355
Comments
Sorry for delay, I was on vacation for a bit. Can you give me a short program that reproduces the problem? |
` def create_raw_transaction(sender_address, receiver_address, amount, wif, fee=0, netcode='GRS', testnet=False):
` |
Try using Note that when I run this code, I don't get the error, as |
Add the above line of code at the end and then run that code. |
It looks like the problem is that WIF that you posted (which I removed just in case real money ends up backing it) does not correspond to the addresses. There is also a bug fixed in f611038 which will now raise the correct exception. Let me know if this is enough to resolve your issue or if you need more guidance. |
I used "create_signed_tx" from "network.tx_utils.create_signed_tx" to generate a groestlcoin transaction and gettting "AttributeError: 'Spendable' object has no attribute 'address' ".
The text was updated successfully, but these errors were encountered: