diff options
author | 251 <13120787+251Labs@users.noreply.github.com> | 2019-03-23 17:41:16 +0100 |
---|---|---|
committer | 251 <13120787+251Labs@users.noreply.github.com> | 2019-03-23 17:43:54 +0100 |
commit | 418d3230f86f77dde6e817f502baff8a54b707fa (patch) | |
tree | a3507114d0b0a2d9184d187d6ded516791151894 /src/rpc | |
parent | 7b13c646457980f44599412f243694fa682a1abf (diff) |
Resolve the checkpoints <-> validation CD.
This commit resolves the checkpoints -> validation -> checkpoints
cirular dependency by moving
`CheckPoints::GetLastCheckpoint(const CCheckpointData& data)` from
`checkpoints.cpp` to `validation.cpp`.
Diffstat (limited to 'src/rpc')
-rw-r--r-- | src/rpc/blockchain.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/rpc/blockchain.cpp b/src/rpc/blockchain.cpp index 1827aec637..0d588ac88d 100644 --- a/src/rpc/blockchain.cpp +++ b/src/rpc/blockchain.cpp @@ -9,7 +9,6 @@ #include <base58.h> #include <chain.h> #include <chainparams.h> -#include <checkpoints.h> #include <coins.h> #include <consensus/validation.h> #include <core_io.h> |