aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <[email protected]>2016-01-04 10:10:41 +0100
committerWladimir J. van der Laan <[email protected]>2016-01-04 10:17:09 +0100
commitac982a16e07db65e255d8de32100c7da9cb6f4e7 (patch)
tree512adf0ab8e95fb96f4a8ef2b7a1765fbc293331 /src/main.cpp
parentMerge pull request #7274 (diff)
parentDouble semicolon cleanup. (diff)
downloaddiscoin-ac982a16e07db65e255d8de32100c7da9cb6f4e7.tar.xz
discoin-ac982a16e07db65e255d8de32100c7da9cb6f4e7.zip
Merge pull request #7263
a5a0831 Double semicolon cleanup. (21E14)
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 0766b1458..8f3cea64a 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -84,8 +84,8 @@ struct COrphanTx {
CTransaction tx;
NodeId fromPeer;
};
-map<uint256, COrphanTx> mapOrphanTransactions GUARDED_BY(cs_main);;
-map<uint256, set<uint256> > mapOrphanTransactionsByPrev GUARDED_BY(cs_main);;
+map<uint256, COrphanTx> mapOrphanTransactions GUARDED_BY(cs_main);
+map<uint256, set<uint256> > mapOrphanTransactionsByPrev GUARDED_BY(cs_main);
void EraseOrphansFor(NodeId peer) EXCLUSIVE_LOCKS_REQUIRED(cs_main);
/**