Skip to content

Commit

Permalink
Merge pull request #77 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 c8fd2b2 + f7c725a commit b265d07
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: 10000 }).fetch()
const transactions = Transactions.find({ processed: false }, { limit: 75 }).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.7
0.3.8

0 comments on commit b265d07

Please sign in to comment.