Browse Source

Set to PRODUCTION

PascalCoin 6 years ago
parent
commit
c71c1367f7
4 changed files with 7 additions and 10 deletions
  1. 1 1
      LICENSE.txt
  2. 3 4
      README.md
  3. 2 2
      src/config.inc
  4. 1 3
      src/gui-classic/UFRMWallet.pas

+ 1 - 1
LICENSE.txt

@@ -2,7 +2,7 @@ Pascal Coin - P2P Cryptocurrency without need of historical operations.
 
 The MIT License (MIT)
 
-Copyright (c) 2016 Albert Molina
+Copyright (c) 2016-2018 PascalCoin developers based on original Albert Molina source code
 
 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
 

+ 3 - 4
README.md

@@ -34,15 +34,14 @@ Also, consider a donation at PascalCoin development account: "0-10"
 
 ## History:  
 
-TODO: Bug in Lazarus optimization cause Access Violation on "getpendings" call (must be 0 or 1). techworker/ugo4brain in discord 2018-05-11 #development channel
 ### Build 4.0.0 - 2018-10-26
 - MANDATORY UPGRADE - HARD FORK ACTIVATION WILL OCCUR ON BLOCK 260000
   - PIP - 0009: RandomHash
     - RandomHash is a new hash algo created by Herman Schoenfeld, see https://github.com/PascalCoin/PascalCoin/blob/master/PIP/PIP-0009.md 
   - PIP - 0015: Fast Block Propagation
-  - PIP - 0016: Layer-2 protocol support
-  - Limit blockchain to allow max only one 0-fee operation by signer per block (prior was limited by network, not by core)
-  - New digest hash for signature verifications
+  - PIP - 0016: Layer-2 protocol support 
+  - Critical bug fix: New digest hash for signature verifications
+  - Limit blockchain to allow max only one 0-fee operation by signer per block (prior was limited by network, not by core)  
   - Added OrderedAccountKeysList that allows an indexed search of public keys in the safebox with mem optimization
   - Improved net protections
 - JSON-RPC changes:

+ 2 - 2
src/config.inc

@@ -31,8 +31,8 @@
   {.$DEFINE Synapse_OpenSSLv10}
   {.$DEFINE Synapse_OpenSSLv11}
 
-  {.$DEFINE PRODUCTION}
-  {$DEFINE TESTNET}
+  {$DEFINE PRODUCTION}
+  {.$DEFINE TESTNET}
 
   // Used to activate RandomHash in V4 hard-fork
   {$DEFINE ACTIVATE_RANDOMHASH_V4}

+ 1 - 3
src/gui-classic/UFRMWallet.pas

@@ -1339,7 +1339,6 @@ end;
 procedure TFRMWallet.LoadAppParams;
 Var ms : TMemoryStream;
   s : AnsiString;
-  fvi : TFileVersionInfo;
 begin
   ms := TMemoryStream.Create;
   Try
@@ -1352,9 +1351,8 @@ begin
   End;
   If FAppParams.FindParam(CT_PARAM_MinerName)=Nil then begin
     // New configuration... assigning a new random value
-    fvi := TFolderHelper.GetTFileVersionInfo(Application.ExeName);
     FAppParams.ParamByName[CT_PARAM_MinerName].SetAsString('New Node '+DateTimeToStr(Now)+' - '+
-      fvi.InternalName+' Build:'+fvi.FileVersion);
+      CT_ClientAppVersion);
   end;
   FBlockChainGrid.ShowTimeAverageColumns:={$IFDEF SHOW_AVERAGE_TIME_STATS}True;{$ELSE}False;{$ENDIF}
   UpdateConfigChanged;