orbit-db-eventstore
orbit-db-eventstore copied to clipboard
Append-Only Log database for orbit-db
Results
2
orbit-db-eventstore issues
Sort by
recently updated
recently updated
newest added
trafficstars
This is the get() method in EventStore: ```js get (hash) { return this.iterator({ gte: hash, limit: 1 }).collect()[0] } ``` The get() method indirectly calls `_read` method: ```js _read (ops,...
I believe, that from my understanding of `iterator` and the Documentation of `iterator`, the default limit should be `-1`, i.e. returning multiple items, instead of just one. `iterator` implies multiple...