From 9f13a10548bf77fb785a9c116234258275de6c04 Mon Sep 17 00:00:00 2001 From: Cory Fields Date: Wed, 22 Apr 2015 17:55:00 -0400 Subject: checkpoints: store mapCheckpoints in CCheckpointData rather than a pointer --- src/checkpoints.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/checkpoints.h') diff --git a/src/checkpoints.h b/src/checkpoints.h index 29dc5f83a9..9cccf4228a 100644 --- a/src/checkpoints.h +++ b/src/checkpoints.h @@ -20,7 +20,7 @@ namespace Checkpoints typedef std::map MapCheckpoints; struct CCheckpointData { - const MapCheckpoints *mapCheckpoints; + MapCheckpoints mapCheckpoints; int64_t nTimeLastCheckpoint; int64_t nTransactionsLastCheckpoint; double fTransactionsPerDay; -- cgit v1.2.3