Skip to content

Commit

Permalink
Merge pull request #76 from Sifchain/bugfix/limits
Browse files Browse the repository at this point in the history
[ChainOps] Limit updates.
  • Loading branch information
intl-man authored Oct 27, 2021
2 parents 38d2334 + 7987a13 commit c8fd2b2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion imports/api/transactions/server/methods.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Meteor.methods({
this.unblock()
if (TXSYNCING) return 'Syncing transactions...'

const transactions = Transactions.find({ processed: false }, { limit: 1000 }).fetch()
const transactions = Transactions.find({ processed: false }, { limit: 10000 }).fetch()

try {
TXSYNCING = true
Expand Down
2 changes: 1 addition & 1 deletion versions/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.3.6
0.3.7

0 comments on commit c8fd2b2

Please sign in to comment.