aboutsummaryrefslogblamecommitdiff
path: root/src/cryptonote_core/checkpoints_create.h
blob: 9088b092dc91b2f40b053c3b902e5b206e35083c (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                                                                               
         
                                                                                              


                
// Copyright (c) 2012-2013 The Cryptonote developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

#pragma once

#include "checkpoints.h"
#include "misc_log_ex.h"

#define ADD_CHECKPOINT(h, hash)  CHECK_AND_ASSERT(checkpoints.add_checkpoint(h,  hash), false);

namespace cryptonote {
  inline bool create_checkpoints(cryptonote::checkpoints& checkpoints)
  {      
    ADD_CHECKPOINT(22231, "7cb10e29d67e1c069e6e11b17d30b809724255fee2f6868dc14cfc6ed44dfb25");
    return true;
  }
}