Browse Source

Fixed Freepascal TArray error

PascalCoin 7 years ago
parent
commit
d803a9fce6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/core/UBlockChain.pas

+ 1 - 1
src/core/UBlockChain.pas

@@ -192,7 +192,7 @@ Type
   End;
 
   TOpReference = UInt64;
-  TOpReferenceArray = TArray<TopReference>;
+  TOpReferenceArray = Array of TopReference;
 
   { TPCOperation }