Hi,
I am having an issue to send the signed transaction to the destination wallet address.
Setup:
a1, a2 on node01 (a1 is the admin node)
b1 on node02 (b2 is another node)
m1 is the multisig address created for 2 of 2.
a2, b1 and m1 are granted send, receive permissions.
 
Flow:
- issue 1000 units of "asset1" to a1
 - preparelockunspent on asset1 of 100 units
 - create multisig address for a1 and a2
 - createrawtransaction (txid of unspent, vout) (m1 multisig address : 100 units of asset1)
 - signrawtransaction of step 4's output hex blob
 - sendrawtransaction of step 5's output hex blob
 - decoderawtransaction of step 6's output hex blob
 - createrawtransaction (step 7's txid, vout, vout's scriptPubKey) (b1 address and 100 units of asset1)
 - signrawtransaction on step 8's output hex blob
 
However on Step 9, a hex blob comes out and "complete" : false too. 
 
Could someone point out where it has gone wrong?