Skip to content

Commit

Permalink
update check
Browse files Browse the repository at this point in the history
  • Loading branch information
TheTrunk committed Oct 20, 2023
1 parent 213eb13 commit 46301cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/services/application/checks.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const ethersList = [
name: 'AstarRPC', providerURL: null, cmd: 'system_health', port: '36011',
},
];
let currentFluxBlockheight = 1465361;
let currentFluxBlockheight = 1494860;
// MAIN
async function checkLoginPhrase(ip, port) {
try {
Expand Down Expand Up @@ -75,7 +75,7 @@ async function isVersionOK(ip, port) {
const url = `http://${ip}:${port}/flux/info`;
const response = await serviceHelper.httpGetRequest(url, timeout);
const version = response.data.data.flux.version.replace(/\./g, '');
if (+version >= 4110) {
if (+version >= 4141) {
if (response.data.data.flux.development === 'false' || !response.data.data.flux.development) {
return true;
}
Expand Down

0 comments on commit 46301cc

Please sign in to comment.