mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-11 21:53:29 +01:00
18 lines
480 B
C
18 lines
480 B
C
|
// 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)
|
||
|
{
|
||
|
return true;
|
||
|
}
|
||
|
}
|