How to verify the contents of a decodedrawtransaction with large data before it is written to a stream?

+1 vote
we have a transaction that writes to stream passed from another party for us to sign, but before publishing, we want to verify the data by parsing the contents of decoderawtransaction. but the output of decoderawtransaction does not display the full stream data because it is too large, instead it gives us the txid and vout. however, the txid and vout given cannot be retrieved from the blockchain (presumably because the stream item has not yet been published)
asked Mar 19, 2019 by anonymous

1 Answer

0 votes

See the maxshowndata runtime parameter which controls the threshold for this shortened output. You can change it on the fly using the setruntimeparam command.

https://www.multichain.com/developers/runtime-parameters/

answered Mar 19, 2019 by MultiChain
...