Skip to content

Commit

Permalink
Merge pull request #129 from zelcash/development
Browse files Browse the repository at this point in the history
v0.69.0
  • Loading branch information
TheTrunk authored Jul 29, 2020
2 parents 2abddad + 3491189 commit 4498bbc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ZelBack/src/services/zelappsService.js
Original file line number Diff line number Diff line change
Expand Up @@ -2200,7 +2200,7 @@ async function storeZelAppRunningMessage(message) {
};

// indexes over name, hash, ip. Then name + ip and name + ip + broadcastedAt.
const queryFind = { name: newZelAppRunningMessage.name, ip: newZelAppRunningMessage.ip, broadcastedAt: newZelAppRunningMessage.broadcastedAt };
const queryFind = { name: newZelAppRunningMessage.name, ip: newZelAppRunningMessage.ip, broadcastedAt: { $gte: newZelAppRunningMessage.broadcastedAt } };
const projection = { _id: 0 };
// we already have the exact same data
const result = await serviceHelper.findOneInDatabase(database, globalZelAppsLocations, queryFind, projection);
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "zelflux",
"version": "0.68.0",
"version": "0.69.0",
"description": "Flux - Node Daemon. The entrace to the Flux network.",
"repository": {
"type": "git",
Expand Down

0 comments on commit 4498bbc

Please sign in to comment.