Ver Fonte

Fixed IFDEF error on Lazarus build

Pascal Coin há 3 anos atrás
pai
commit
0ebdd8c9a8
1 ficheiros alterados com 1 adições e 1 exclusões
  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);