Using create-unsigned-tx.py I get a
"TypeError: Non-hexadecimal digit found"
after I input the corresponding private key for the auth UTXO.
Traceback (most recent call last):
File "create-unsigned-tx.py", line 300, in
main()
File "create-unsigned-tx.py", line 262, in main
magicbyte=get_p2pk_vbyte()):
File "/home/mint/Desktop/joinmarket-0.1.4/bitcoin/secp256k1_main.py", line 18, in privkey_to_address
return pubkey_to_address(privkey_to_pubkey(priv, from_hex), magicbyte)
File "/home/mint/Desktop/joinmarket-0.1.4/bitcoin/secp256k1_main.py", line 269, in privkey_to_pubkey
return privkey_to_pubkey_inner(priv, usehex)
File "/home/mint/Desktop/joinmarket-0.1.4/bitcoin/secp256k1_main.py", line 228, in func_wrapper
newargs += [arg.decode('hex')]
File "/usr/lib/python2.7/encodings/hex_codec.py", line 42, in hex_decode
output = binascii.a2b_hex(input)
TypeError: Non-hexadecimal digit found
Also tried using the testnet example from the github wiki and got the same error.