I am currently working on a soft GUI wallet (keys are not stored) using python. I am working with steem-python's TransactionBuilder and I am having some trouble:
Here is the code that I am using to send a transaction:
https://steemitimages.com/DQmQaNNjhimLBkc6pwUQzaxDfSuguk9jRxT49vBx4tSr2AT/Screen%20Shot%202017-06-09%20at%2011.38.46%20AM.png
First, I set up the transfer and the TransactionBuilder and then use operations.Transfer() to make my transfer readable for the TransactionBuilder. Next, I use appendMissingSignatures() to add the WIF active key that the user has provided to the TransactionBuilder, and then attempt to sign and broadcast the transaction (no_broadcast = True, as I am just testing).
Obviously, the way that I am adding the WIF key to the TransactionBuilder is incorrect, as the following MissingKeyError is raised:
https://steemitimages.com/DQmeYG5zS3Nj1CxtcFUvrVh78C9ezwgSiwf6rxH1VD6i7ZF/Screen%20Shot%202017-06-09%20at%2011.39.46%20AM.png
What am I doing wrong here? I appreciate your help.