diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2017-01-04 08:20:37 -0800 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2017-01-11 08:21:40 -0800 |
commit | df3637177a5988261e6ce704018e14140401e1e1 (patch) | |
tree | 36b26c854dbc390ad34070c91530782b3791fd63 | |
parent | e356d9a758fff44841c0a630ef6b048de05e53f0 (diff) |
Update estimated transaction count data
-rw-r--r-- | src/chainparams.cpp | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/src/chainparams.cpp b/src/chainparams.cpp index 626dc9f8cb..66b5d48fd9 100644 --- a/src/chainparams.cpp +++ b/src/chainparams.cpp @@ -155,10 +155,11 @@ public: }; chainTxData = ChainTxData{ - 1397080064, // * UNIX timestamp of last checkpoint block - 36544669, // * total number of transactions between genesis and last checkpoint + // Data as of block 00000000000000000166d612d5595e2b1cd88d71d695fc580af64d8da8658c23 (height 446482). + 1483472411, // * UNIX timestamp of last known number of transactions + 184495391, // * total number of transactions between genesis and that timestamp // (the tx=... number in the SetBestChain debug.log lines) - 0.7 // * estimated number of transactions per second after checkpoint + 3.2 // * estimated number of transactions per second after that timestamp }; } }; @@ -240,9 +241,10 @@ public: }; chainTxData = ChainTxData{ - 1337966069, - 1488, - 0.0035 + // Data as of block 00000000c2872f8f8a8935c8e3c5862be9038c97d4de2cf37ed496991166928a (height 1063660) + 1483546230, + 12834668, + 0.15 }; } |