aboutsummaryrefslogtreecommitdiff
path: root/src/checkpoints.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <[email protected]>2014-06-28 15:06:04 +0200
committerWladimir J. van der Laan <[email protected]>2014-06-28 15:06:18 +0200
commit9125ef942174254d4afdf96c3eda1da12dff01e0 (patch)
treeb9302084bb363a0e68bdab96bf2aff4a1fac4bb8 /src/checkpoints.cpp
parentMerge pull request #4418 (diff)
parentupdate coding.md to reflect changes by pull (diff)
downloaddiscoin-9125ef942174254d4afdf96c3eda1da12dff01e0.tar.xz
discoin-9125ef942174254d4afdf96c3eda1da12dff01e0.zip
Merge pull request #4398
86fe1b8 update coding.md to reflect changes by pull (Philip Kaufmann) e10dcf2 ensure clean and consistent "namespace" usage (Philip Kaufmann)
Diffstat (limited to 'src/checkpoints.cpp')
-rw-r--r--src/checkpoints.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/checkpoints.cpp b/src/checkpoints.cpp
index 75ac41891..80479b47f 100644
--- a/src/checkpoints.cpp
+++ b/src/checkpoints.cpp
@@ -12,8 +12,8 @@
#include <boost/assign/list_of.hpp> // for 'map_list_of()'
#include <boost/foreach.hpp>
-namespace Checkpoints
-{
+namespace Checkpoints {
+
typedef std::map<int, uint256> MapCheckpoints;
// How many times we expect transactions after the last checkpoint to
@@ -161,4 +161,5 @@ namespace Checkpoints
}
return NULL;
}
-}
+
+} // namespace Checkpoints