Skip to content

Commit

Permalink
Merge pull request #74 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 0d20954 + 1e54425 commit 4b79066
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: 250 }).fetch()
const transactions = Transactions.find({ processed: false }, { limit: 125 }).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.4
0.3.5

0 comments on commit 4b79066

Please sign in to comment.