Skip to content

Commit

Permalink
remove check
Browse files Browse the repository at this point in the history
  • Loading branch information
TheTrunk committed Sep 8, 2021
1 parent 189e9d2 commit 1fb7ef2
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions ZelBack/src/services/idService.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ async function loginPhrase(req, res) {
// check docker availablility
await appsService.dockerListContainers(false);
// check Node Hardware Requirements are ok.
const hwPassed = await confirmNodeTierHardware();
if (hwPassed === false) {
throw new Error('Node hardware requirements not met');
}
// const hwPassed = await confirmNodeTierHardware();
// if (hwPassed === false) {
// throw new Error('Node hardware requirements not met');
// }
// check DOS state (contains daemon checks)
const dosState = await fluxCommunication.getDOSState();
if (dosState.status === 'error') {
Expand Down Expand Up @@ -712,4 +712,5 @@ module.exports = {
wsRespondLoginPhrase,
wsRespondSignature,
checkLoggedUser,
confirmNodeTierHardware,
};

0 comments on commit 1fb7ef2

Please sign in to comment.