Skip to content

Commit

Permalink
Merge pull request #328 from RunOnFlux/development
Browse files Browse the repository at this point in the history
v2.0.1
  • Loading branch information
TheTrunk authored Sep 8, 2021
2 parents 3a3289c + c237ae2 commit c0ec1f3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions ZelBack/src/services/idService.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ async function loginPhrase(req, res) {
try {
// check docker availablility
await appsService.dockerListContainers(false);
// check Node Hardware Requirements are ok.
await fluxCommunication.confirmNodeTierHardware();
// check DOS state (contains daemon checks)
const dosState = await fluxCommunication.getDOSState();
if (dosState.status === 'error') {
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": "flux",
"version": "2.0.0",
"version": "2.0.1",
"description": "Flux, Your Gateway to a Decentralized World",
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions tests/ZelBack/apiTests.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ describe('loading express', function () {
.get('/foo/bar')
.expect(404, done);
});
it('/id/loginphrase', function testSlash(done) {
it('/id/emergencyphrase', function testSlash(done) {
request(server)
.get('/id/loginphrase')
.get('/id/emergencyphrase')
.expect(200)
.end((err, res) => {
if (err) {
Expand Down

0 comments on commit c0ec1f3

Please sign in to comment.