Skip to content

Commit

Permalink
Merge pull request #110 from zelcash/development
Browse files Browse the repository at this point in the history
v0.64
  • Loading branch information
TheTrunk authored Jul 10, 2020
2 parents 0e44f71 + e539ba1 commit 4e9ccf1
Show file tree
Hide file tree
Showing 14 changed files with 869 additions and 794 deletions.
1 change: 0 additions & 1 deletion ZelBack/config/default.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ module.exports = {
zelappslocal: {
database: 'localzelapps',
collections: {
resourcesLocked: 'zelappslocalresources', // TODO DELETE
zelappsInformation: 'zelappsinformation',
},
},
Expand Down
10 changes: 8 additions & 2 deletions ZelBack/src/routes.js
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,12 @@ module.exports = (app, expressWs) => {
app.get('/zelapps/temporarymessages', (req, res) => {
zelappsService.getZelAppsTemporaryMessages(req, res);
});
app.get('/zelapps/permanentmessages', (req, res) => {
zelappsService.getZelAppsPermanentMessages(req, res);
});
app.get('/zelapps/globalspecifications', (req, res) => {
zelappsService.getGlobalZelAppsSpecifications(req, res);
});

// app.get('/explorer/allutxos', (req, res) => {
// explorerService.getAllUtxos(req, res);
Expand Down Expand Up @@ -601,7 +607,7 @@ module.exports = (app, expressWs) => {
zelbenchService.restartNodeBenchmarks(req, res);
});

app.get('/explorer/reindex', (req, res) => {
app.get('/explorer/reindex/:reindexapps?', (req, res) => {
explorerService.reindexExplorer(req, res);
});
app.get('/explorer/restart', (req, res) => {
Expand All @@ -610,7 +616,7 @@ module.exports = (app, expressWs) => {
app.get('/explorer/stop', (req, res) => {
explorerService.stopBlockProcessing(req, res);
});
app.get('/explorer/rescan/:blockheight?', (req, res) => {
app.get('/explorer/rescan/:blockheight?/:rescanapps?', (req, res) => {
explorerService.rescanExplorer(req, res);
});

Expand Down
Loading

0 comments on commit 4e9ccf1

Please sign in to comment.