Hi guys .
I'm trying to integrate multisignature on my site , but I encountered a problem.
What am I doing ?
I create multisig address:
bitcoind createmultisig 2 '["pubkey1", "pubkey2", "pubkey3"]'
Then I transfer funds generated address. It begins with the number 3
Next, I create a raw transaction:
bitcoind createrawtransaction '[{"txid": " transfer transaction id here ", "vout": 0} ]' ' { ' address for withdrawal " : 0.1 } '
Then I try to sign the transaction :
bitcoind signrawtransaction '[{"txid": " transfer transaction id here ", "vout": 0 , "scriptPubKey": " I took out decoderawtransaction"}]' '["privkey1", "privkey2"]'
But the answer comes - complete: False
What should I do ?
In this case, a bunch of keys (private / public ) is taken from one wallet.
And one more question . If I use the public keys of different wallets, may I sign a transaction private keys on a wallet? I need to import private keys ? But where?
Sorry for my bad English.