Skip to content
This repository has been archived by the owner on Sep 14, 2024. It is now read-only.

Commit

Permalink
aa3
Browse files Browse the repository at this point in the history
  • Loading branch information
NosoDevTeam committed Aug 31, 2024
1 parent eeafd98 commit 3719fe5
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lastrelease.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.4.3Aa2 0.4.2Da2 x {LastOfficial} {LastBeta} {TestNet}
0.4.3Aa3 0.4.2Da2 x {LastOfficial} {LastBeta} {TestNet}
2 changes: 1 addition & 1 deletion masterpaskalform.pas
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,7 @@ TForm1 = class(TForm)
RestartFileName = 'launcher.sh';
updateextension = 'tgz';
{$ENDIF}
NodeRelease = 'Aa2';
NodeRelease = 'Aa3';
OficialRelease = true;
BetaRelease = false;
VersionRequired = '0.4.2';
Expand Down
1 change: 1 addition & 0 deletions mpparser.pas
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,7 @@ function GetOpData(textLine:string):String;
else if UpperCase(Command) = 'GETDBLB' then ToLog('console',GetDBLastBlock.ToString)
else if UpperCase(Command) = 'ORDINFO' then OrdInfo(LineText)
else if UpperCase(Command) = 'GETMULTI' then CreateMultiAddress(LineText)
else if UpperCase(Command) = 'DELBOTS' then DeleteBots


// New system
Expand Down
6 changes: 3 additions & 3 deletions nosoconsensus.pas
Original file line number Diff line number Diff line change
Expand Up @@ -398,13 +398,13 @@ TConsensusData = record
Css_ValidNodes := ValidNodes;
if ReachedNodes >0 then Css_Percentage := (ValidNodes * 100) div ReachedNodes
else Css_Percentage := 0;
if StrToIntDef(result[cLastBlock],0) >= StrToIntDef(Consensus[cLastBlock],0) then
begin
//if StrToIntDef(result[cLastBlock],0) >= StrToIntDef(Consensus[cLastBlock],0) then
//begin
EnterCriticalSection(CSConsensus);
setlength(consensus,0);
Consensus := copy(result,0,length(result));
LeaveCriticalSection(CSConsensus);
end;
//end;

Css_Completed := true;
RunningConsensus := false;
Expand Down

0 comments on commit 3719fe5

Please sign in to comment.