diff options
author | mydesktop <dev.mc2@gmail.com> | 2014-05-28 21:13:32 -0400 |
---|---|---|
committer | mydesktop <dev.mc2@gmail.com> | 2014-05-28 21:13:32 -0400 |
commit | 5c1b7c72249a114b1c30945fc8a9116c07573a48 (patch) | |
tree | 5e110e349a1f4dccd33867fecbbc4a2c51fc312d /src/cryptonote_core/checkpoints_create.h | |
parent | raise min fee and correct COIN value (diff) | |
parent | typo in tx_pool.cpp (diff) | |
download | monero-5c1b7c72249a114b1c30945fc8a9116c07573a48.tar.xz |
Merge branch '0.8.8update'
Update to newest version 0.8.8. See change log for details.
Diffstat (limited to 'src/cryptonote_core/checkpoints_create.h')
-rw-r--r-- | src/cryptonote_core/checkpoints_create.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/cryptonote_core/checkpoints_create.h b/src/cryptonote_core/checkpoints_create.h index 32d15831f..3ecbbf0b6 100644 --- a/src/cryptonote_core/checkpoints_create.h +++ b/src/cryptonote_core/checkpoints_create.h @@ -12,12 +12,9 @@ namespace cryptonote { inline bool create_checkpoints(cryptonote::checkpoints& checkpoints) { - // Checkpointing disabled until we can make the client not fast-sync - // without checking PoW at some point. Otherwise we may be exposed - // to blockchain corruption attacks. Need to investigate this further. - // 8-5-14 - // ADD_CHECKPOINT(22231, "7cb10e29d67e1c069e6e11b17d30b809724255fee2f6868dc14cfc6ed44dfb25"); - // ADD_CHECKPOINT(29556, "53c484a8ed91e4da621bb2fa88106dbde426fe90d7ef07b9c1e5127fb6f3a7f6"); + ADD_CHECKPOINT(22231, "7cb10e29d67e1c069e6e11b17d30b809724255fee2f6868dc14cfc6ed44dfb25"); + ADD_CHECKPOINT(29556, "53c484a8ed91e4da621bb2fa88106dbde426fe90d7ef07b9c1e5127fb6f3a7f6"); + ADD_CHECKPOINT(50000, "0fe8758ab06a8b9cb35b7328fd4f757af530a5d37759f9d3e421023231f7b31c"); return true; } } |