diff options
| author | 21E14 <[email protected]> | 2015-12-29 22:42:27 -0500 |
|---|---|---|
| committer | 21E14 <[email protected]> | 2015-12-30 12:23:07 -0500 |
| commit | a5a0831458d8290c1e7591cf32a529669b613d86 (patch) | |
| tree | 91bcafc947127d3307425af2a7a075ff889df3d3 /src/main.cpp | |
| parent | Merge pull request #7214 (diff) | |
| download | discoin-a5a0831458d8290c1e7591cf32a529669b613d86.tar.xz discoin-a5a0831458d8290c1e7591cf32a529669b613d86.zip | |
Double semicolon cleanup.
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp index a43eef07b..dbfb0c812 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); /** |