aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMax K <[email protected]>2019-04-14 09:33:27 -0700
committerGitHub <[email protected]>2019-04-14 09:33:27 -0700
commitea4a3c5e16d7818fe1ca45b6ec89b08bf59501ed (patch)
treec508feb31b14c46d106a27b676b689afadcb2777 /src
parentMerge pull request #1574 from rnicoll/1.14-rnicoll-key (diff)
parentUpdate chainparams with more recent data (diff)
downloaddiscoin-1.14-rc-1.tar.xz
discoin-1.14-rc-1.zip
Merge pull request #1561 from langerhans/1.14-progress-fixv1.14-rc-1
Fix verification progress
Diffstat (limited to 'src')
-rw-r--r--src/chainparams.cpp14
-rw-r--r--src/rpc/blockchain.cpp2
2 files changed, 10 insertions, 6 deletions
diff --git a/src/chainparams.cpp b/src/chainparams.cpp
index baf54dffc..ad648a267 100644
--- a/src/chainparams.cpp
+++ b/src/chainparams.cpp
@@ -110,10 +110,10 @@ public:
consensus.vDeployments[Consensus::DEPLOYMENT_SEGWIT].nTimeout = 0; // Disabled
// The best chain should have at least this much work.
- consensus.nMinimumChainWork = uint256S("0x00000000000000000000000000000000000000000000001d35274e9465dd925d");
+ consensus.nMinimumChainWork = uint256S("0x000000000000000000000000000000000000000000000141a39e783aad4f660f");
// By default assume that the signatures in ancestors of this block are valid.
- consensus.defaultAssumeValid = uint256S("0xca5eb72f1e0d160f1481f74d56d7cc4a27d91aa585ba012da8018a5fe934d61b"); // 1,600,000
+ consensus.defaultAssumeValid = uint256S("0x77e3f4a4bcb4a2c15e8015525e3d15b466f6c022f6ca82698f329edef7d9777e"); // 2,510,150
// AuxPoW parameters
consensus.nAuxpowChainId = 0x0062; // 98 - Josh Wise!
@@ -193,14 +193,16 @@ public:
( 1750000, uint256S("0x5c8e7327984f0d6f59447d89d143e5f6eafc524c82ad95d176c5cec082ae2001"))
( 2000000, uint256S("0x9914f0e82e39bbf21950792e8816620d71b9965bdbbc14e72a95e3ab9618fea8"))
( 2031142, uint256S("0x893297d89afb7599a3c571ca31a3b80e8353f4cf39872400ad0f57d26c4c5d42"))
+ ( 2510150, uint256S("0x77e3f4a4bcb4a2c15e8015525e3d15b466f6c022f6ca82698f329edef7d9777e"))
};
chainTxData = ChainTxData{
- // Data as of block 893297d89afb7599a3c571ca31a3b80e8353f4cf39872400ad0f57d26c4c5d42 (height 2031142).
- 1514549787, // * UNIX timestamp of last checkpoint block
- 32796624, // * total number of transactions between genesis and last checkpoint
+ // Data as of block 77e3f4a4bcb4a2c15e8015525e3d15b466f6c022f6ca82698f329edef7d9777e (height 2510150).
+ // Tx estimate based on average of year 2018 (~27k transactions per day)
+ 1544484077, // * UNIX timestamp of last checkpoint block
+ 42797508, // * total number of transactions between genesis and last checkpoint
// (the tx=... number in the SetBestChain debug.log lines)
- 4000.0 // * estimated number of transactions per day after checkpoint
+ 0.3125 // * estimated number of transactions per second after checkpoint
};
}
};
diff --git a/src/rpc/blockchain.cpp b/src/rpc/blockchain.cpp
index 43a802e9b..e1119495f 100644
--- a/src/rpc/blockchain.cpp
+++ b/src/rpc/blockchain.cpp
@@ -1145,6 +1145,7 @@ UniValue getblockchaininfo(const JSONRPCRequest& request)
" \"difficulty\": xxxxxx, (numeric) the current difficulty\n"
" \"mediantime\": xxxxxx, (numeric) median time for the current best block\n"
" \"verificationprogress\": xxxx, (numeric) estimate of verification progress [0..1]\n"
+ " \"initialblockdownload\": xxxx, (bool) (debug information) estimate of whether this node is in Initial Block Download mode.\n"
" \"chainwork\": \"xxxx\" (string) total amount of work in active chain, in hexadecimal\n"
" \"pruned\": xx, (boolean) if the blocks are subject to pruning\n"
" \"pruneheight\": xxxxxx, (numeric) lowest-height complete block stored\n"
@@ -1182,6 +1183,7 @@ UniValue getblockchaininfo(const JSONRPCRequest& request)
obj.push_back(Pair("difficulty", (double)GetDifficulty()));
obj.push_back(Pair("mediantime", (int64_t)chainActive.Tip()->GetMedianTimePast()));
obj.push_back(Pair("verificationprogress", GuessVerificationProgress(Params().TxData(), chainActive.Tip())));
+ obj.push_back(Pair("initialblockdownload", IsInitialBlockDownload()));
obj.push_back(Pair("chainwork", chainActive.Tip()->nChainWork.GetHex()));
obj.push_back(Pair("pruned", fPruneMode));