How to get all the records in a stream

+1 vote

multichain.listStreamKeys({

stream: "Stream1",

verbose: true,

start: 0,

count: 100

)}

Here i mentioned count 100 so i got 100 records, if not mentioned got only 10 records,

How can i get all the records with out mention the count number

 

asked Oct 25, 2017 by Darwin

1 Answer

0 votes

Just pass a count value of 999999999 (or something like that, which you know will always be larger than the number of stream items).

answered Oct 25, 2017 by MultiChain
...