Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F10907547
checkpoints.cpp
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
619 B
Subscribers
None
checkpoints.cpp
View Options
// Copyright (c) 2009-2016 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include
<checkpoints.h>
#include
<chainparams.h>
namespace
Checkpoints
{
bool
CheckBlock
(
const
CCheckpointData
&
data
,
int
nHeight
,
const
BlockHash
&
hash
)
{
const
MapCheckpoints
&
checkpoints
=
data
.
mapCheckpoints
;
MapCheckpoints
::
const_iterator
i
=
checkpoints
.
find
(
nHeight
);
if
(
i
==
checkpoints
.
end
())
{
return
true
;
}
return
hash
==
i
->
second
;
}
}
// namespace Checkpoints
File Metadata
Details
Attached
Mime Type
text/x-c++
Expires
Mon, Nov 25, 08:02 (1 d, 17 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
4511986
Default Alt Text
checkpoints.cpp (619 B)
Attached To
rSTAGING Bitcoin ABC staging
Event Timeline
Log In to Comment