diff options
| author | Ross Nicoll <[email protected]> | 2014-04-28 20:43:45 +0100 |
|---|---|---|
| committer | Ross Nicoll <[email protected]> | 2014-04-28 20:43:45 +0100 |
| commit | e2f9c4bf9eacd2e34aab00c28457649041db54fe (patch) | |
| tree | 3eb6d37e747774bd6a17b595c4fa67f6ba099df4 /src/checkpoints.cpp | |
| parent | Inserted checkpoints through the 100k-200k block range, with emphasis on the ... (diff) | |
| download | discoin-e2f9c4bf9eacd2e34aab00c28457649041db54fe.tar.xz discoin-e2f9c4bf9eacd2e34aab00c28457649041db54fe.zip | |
Corrected timestamp on most recent checkpoint block; previous epoch value was incorrect
when calculating timestamp.
Diffstat (limited to 'src/checkpoints.cpp')
| -rw-r--r-- | src/checkpoints.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/checkpoints.cpp b/src/checkpoints.cpp index 7acea645b..dc98b7353 100644 --- a/src/checkpoints.cpp +++ b/src/checkpoints.cpp @@ -53,7 +53,7 @@ namespace Checkpoints ; static const CCheckpointData data = { &mapCheckpoints, - 1398691148, // * UNIX timestamp of last checkpoint block + 1398694748, // * UNIX timestamp of last checkpoint block 9493347, // * total number of transactions between genesis and last checkpoint // (the tx=... number in the SetBestChain debug.log lines) 8000.0 // * estimated number of transactions per day after checkpoint |