How to confirm the streams transaction data have been fully synchorized for newly joined node

+5 votes
On Multichain stream process, How can I confirm that my newly joined node and the subscribed streams' transaction data have been fully synchronized.
asked Aug 14, 2023 by Moke Kwai Cheong

1 Answer

+1 vote

You can check:

  • Both nodes have the same hash for the last block given by getlastblockinfo. This means that their actual blockchains are in sync.
  • That synchronized is true in the output of liststreams for the stream in the new node. This means that the stream has been fully indexed by that node.
  • That getchunkqueueinfo is giving you all zeroes in the new node. This means that any offchain data has been retrieved.
answered Aug 15, 2023 by MultiChain
...