diff options
| author | Philip Kaufmann <[email protected]> | 2014-06-24 14:17:43 +0200 |
|---|---|---|
| committer | Philip Kaufmann <[email protected]> | 2014-06-26 10:36:57 +0200 |
| commit | e10dcf27b4fb324a85b5650c7acd2ea5a52e822f (patch) | |
| tree | 6725fc2d632622ef5fbdc7b480996adb9b9a5fba /src/checkpoints.cpp | |
| parent | Merge pull request #4368 (diff) | |
| download | discoin-e10dcf27b4fb324a85b5650c7acd2ea5a52e822f.tar.xz discoin-e10dcf27b4fb324a85b5650c7acd2ea5a52e822f.zip | |
ensure clean and consistent "namespace" usage
- remove some missplaced ;
- ensure end of a namespace is clearly visible
- use same formatting when using namespace
Diffstat (limited to 'src/checkpoints.cpp')
| -rw-r--r-- | src/checkpoints.cpp | 7 |
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 |