Browse Source

Set to TESTNET 4.0.2d

PascalCoin 6 years ago
parent
commit
55ddb6e18d
3 changed files with 4 additions and 3 deletions
  1. 1 0
      README.md
  2. 2 2
      src/config.inc
  3. 1 1
      src/core/UConst.pas

+ 1 - 0
README.md

@@ -41,6 +41,7 @@ Also, consider a donation at PascalCoin development account: "0-10"
 - Allow download new safebox (instead of download pending blocks) when difference > TNode.MinFutureBlocksToDownloadNewSafebox
 - Allow download new safebox (instead of download pending blocks) when difference > TNode.MinFutureBlocksToDownloadNewSafebox
   - 7 days by default for Production, 1 for Testnet
   - 7 days by default for Production, 1 for Testnet
   - Disabled by default on Daemon, configure on INI file with MINPENDINGBLOCKSTODOWNLOADCHECKPOINT
   - Disabled by default on Daemon, configure on INI file with MINPENDINGBLOCKSTODOWNLOADCHECKPOINT
+  - Enabled by default on GUI, can configure it
   - Will not delete current blockchain, but will not download pending blocks between last block saved and current network checkpoint block
   - Will not delete current blockchain, but will not download pending blocks between last block saved and current network checkpoint block
 - Allow only connections using Net protocol >= 9  (Introduced on Build 4.0.1)
 - Allow only connections using Net protocol >= 9  (Introduced on Build 4.0.1)
 - Fill automatic params at "buyaccount" RPC call: Will set 'price' and 'seller_account' values to current safebox values if not provided
 - Fill automatic params at "buyaccount" RPC call: Will set 'price' and 'seller_account' values to current safebox values if not provided

+ 2 - 2
src/config.inc

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

+ 1 - 1
src/core/UConst.pas

@@ -173,7 +173,7 @@ Const
   CT_OpSubtype_Data_Signer                = 103;
   CT_OpSubtype_Data_Signer                = 103;
   CT_OpSubtype_Data_Receiver              = 104;
   CT_OpSubtype_Data_Receiver              = 104;
 
 
-  CT_ClientAppVersion : AnsiString = {$IFDEF PRODUCTION}'4.0.2c'{$ELSE}{$IFDEF TESTNET}'TESTNET 4.0.2c'{$ELSE}{$ENDIF}{$ENDIF};
+  CT_ClientAppVersion : AnsiString = {$IFDEF PRODUCTION}'4.0.2d'{$ELSE}{$IFDEF TESTNET}'TESTNET 4.0.2d'{$ELSE}{$ENDIF}{$ENDIF};
 
 
   CT_Discover_IPs = {$IFDEF PRODUCTION}'bpascal1.dynamic-dns.net;bpascal2.dynamic-dns.net;pascalcoin1.dynamic-dns.net;pascalcoin2.dynamic-dns.net;pascalcoin1.dns1.us;pascalcoin2.dns1.us;pascalcoin1.dns2.us;pascalcoin2.dns2.us'
   CT_Discover_IPs = {$IFDEF PRODUCTION}'bpascal1.dynamic-dns.net;bpascal2.dynamic-dns.net;pascalcoin1.dynamic-dns.net;pascalcoin2.dynamic-dns.net;pascalcoin1.dns1.us;pascalcoin2.dns1.us;pascalcoin1.dns2.us;pascalcoin2.dns2.us'
                     {$ELSE}'pascaltestnet1.dynamic-dns.net;pascaltestnet2.dynamic-dns.net;pascaltestnet1.dns1.us;pascaltestnet2.dns1.us'{$ENDIF};
                     {$ELSE}'pascaltestnet1.dynamic-dns.net;pascaltestnet2.dynamic-dns.net;pascaltestnet1.dns1.us;pascaltestnet2.dns1.us'{$ENDIF};