diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-06-25 16:51:49 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-06-25 17:00:09 +0200 |
| commit | 343feecf562a39e7d898ece2fd745fcb9d4c90e9 (patch) | |
| tree | f780cbfe1b73ae0765d1930595e59cf7b13b53d6 /src/checkpoints.cpp | |
| parent | Merge pull request #3839 (diff) | |
| parent | Move coins.cpp and keystore.cpp to libbitcoin_common (diff) | |
| download | discoin-343feecf562a39e7d898ece2fd745fcb9d4c90e9.tar.xz discoin-343feecf562a39e7d898ece2fd745fcb9d4c90e9.zip | |
Merge pull request #4368
75c82d4 Move coins.cpp and keystore.cpp to libbitcoin_common (Wladimir J. van der Laan)
84ce18c Remove unnecessary dependencies for bitcoin-cli (Wladimir J. van der Laan)
14f888c Move network-time related functions to timedata.cpp/h (Wladimir J. van der Laan)
Diffstat (limited to 'src/checkpoints.cpp')
| -rw-r--r-- | src/checkpoints.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/checkpoints.cpp b/src/checkpoints.cpp index 926949e06..75ac41891 100644 --- a/src/checkpoints.cpp +++ b/src/checkpoints.cpp @@ -83,9 +83,9 @@ namespace Checkpoints }; const CCheckpointData &Checkpoints() { - if (Params().NetworkID() == CChainParams::TESTNET) + if (Params().NetworkID() == CBaseChainParams::TESTNET) return dataTestnet; - else if (Params().NetworkID() == CChainParams::MAIN) + else if (Params().NetworkID() == CBaseChainParams::MAIN) return data; else return dataRegtest; |