diff options
| author | Cory Fields <[email protected]> | 2015-04-22 17:55:00 -0400 |
|---|---|---|
| committer | Cory Fields <[email protected]> | 2015-04-30 23:14:08 -0400 |
| commit | 9f13a10548bf77fb785a9c116234258275de6c04 (patch) | |
| tree | 0b8ec1207e3056383e2681807c6e532db3ef80c5 /src/checkpoints.h | |
| parent | Merge pull request #6022 (diff) | |
| download | discoin-9f13a10548bf77fb785a9c116234258275de6c04.tar.xz discoin-9f13a10548bf77fb785a9c116234258275de6c04.zip | |
checkpoints: store mapCheckpoints in CCheckpointData rather than a pointer
Diffstat (limited to 'src/checkpoints.h')
| -rw-r--r-- | src/checkpoints.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/checkpoints.h b/src/checkpoints.h index 29dc5f83a..9cccf4228 100644 --- a/src/checkpoints.h +++ b/src/checkpoints.h @@ -20,7 +20,7 @@ namespace Checkpoints typedef std::map<int, uint256> MapCheckpoints; struct CCheckpointData { - const MapCheckpoints *mapCheckpoints; + MapCheckpoints mapCheckpoints; int64_t nTimeLastCheckpoint; int64_t nTransactionsLastCheckpoint; double fTransactionsPerDay; |