Post
Topic
Board Development & Technical Discussion
Re: Python Bitcoin ECC library, supports signing, Electrum, transactions (no blocks)
by
waxwing
on 24/10/2013, 22:24:47 UTC
Your problem is that mk_multisig_script returns a hex encoded string and scriptaddr expects binary.  Fix:

Code:
msigaddr = scriptaddr(mscript.decode('hex'))

Many thanks. That solved that one. Do you happen to know the answer to my previous question too? (i.e. I'm still getting "Invalid Signature" after signing with the two private keys).