retrieve a list of pending rawtransactions to be signed

+1 vote
I'm trying to wrap my head around multisignature addresses.  In the terminal it's very easy, but the thing I don't understand yet is how, for example, an app running on a second server is supposed to retrieve the pending transactions that needs to be signed.

Is there a way to retrieve these transactions?
asked Sep 8, 2017 by anonymous

1 Answer

0 votes

The partially signed raw transactions are not stored on the blockchain or automatically transmitted between nodes. These are simply data structures that are built via MultiChain's APIs, and nothing happens on the blockchain until the final sendrawtransaction.

So if you want to pass a pending transaction from one user to another, you either need to do it off-chain, or else do it explicitly on-chain using something like a stream (the transaction can just be the payload of a stream item). But in the latter case, you should be aware that all nodes will see that partially signed transaction.

answered Sep 9, 2017 by MultiChain
...