Unable to create and sign 3-to-4 multisig

+1 vote
created 3-to-4 multisig using
addmultisigaddress 3 '["02d819390343b71d8a354f874e9d7e2274fa29dfd53ce32927bc7701aa355535da", "0253b1a5b5f4448dcaa1d20955dd14822aac7cef605fb67b4ed755717efd157d53", "03e09aad2dbe87a56ff8c3508b13f2be3eb55b81eeb6e2e0ccc75702de702e046c", "03d2dc053d833c03007d395bf45dccbb578d1e711726f07f3ea72e6252f625d2e6"]'
but when I try to sign any transaction ' "complete" : false ' is shown for all sign from 4 nodes.
asked Apr 19, 2017 by anonymous

1 Answer

+1 vote
 
Best answer

After signing with one node, you need to take the new version of the transaction (from the output of signrawtransaction) and then pass that to the next for signing. The signature is added to the transaction each time and nothing happens on the blockchain until it is transmitted with sendrawtransaction. See this tutorial for an example:

http://www.multichain.com/developers/multisignature-transactions/

answered Apr 19, 2017 by MultiChain
Thanks for the help and it worked.
...