Identify stream from non-stream ("normal") transactions

+2 votes
When iterating over the transactions of a block via the getblock call, is there a way to tell a stream transaction from a non-stream ("normal") one?

Thank you.
asked Jan 9, 2017 by Kostas

1 Answer

+1 vote

In the latest version of MultiChain, getblock can takes values of 0...4 for the verbose parameter, which give increasing levels of detail about each transaction in the block. If you use 4, you'll see the full decoded transaction output, like the output of getrawtransaction, in which the stream items will be clear.

answered Jan 10, 2017 by MultiChain
...