Browse Source

Fixed IFDEF error on Lazarus build

Pascal Coin 3 years ago
parent
commit
0ebdd8c9a8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/core/UBlockChain.pas

+ 1 - 1
src/core/UBlockChain.pas

@@ -3138,7 +3138,7 @@ begin
           AddOperationToHashTree(LOperation);
           inc(AProcessedCount);
         end else begin
-          {$IF HIGHLOG}TLog.NewLog(ltdebug,ClassName,Format('Not added a 0fee operation: %s',[LOperation.ToString]));{$ENDIF}
+          {$IFDEF HIGHLOG}TLog.NewLog(ltdebug,ClassName,Format('Not added a 0fee operation: %s',[LOperation.ToString]));{$ENDIF}
         end;
       Finally
         FreeAndNil(LOperation);