diff options
| author | MarcoFalke <[email protected]> | 2016-04-03 11:49:36 +0200 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2016-04-03 11:58:01 +0200 |
| commit | fada0c422c081ba53a324aaf63c0a750cb56498e (patch) | |
| tree | cb5bfc67fed9a66c67582fa4ade5fe77b8442259 /src/main.cpp | |
| parent | Merge #7691: [Wallet] refactor wallet/init interaction (diff) | |
| download | discoin-fada0c422c081ba53a324aaf63c0a750cb56498e.tar.xz discoin-fada0c422c081ba53a324aaf63c0a750cb56498e.zip | |
[doc] Fix doxygen comments for members
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main.cpp b/src/main.cpp index 2c0b3bfee..b68c6affa 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -194,10 +194,10 @@ namespace { /** Blocks that are in flight, and that are in the queue to be downloaded. Protected by cs_main. */ struct QueuedBlock { uint256 hash; - CBlockIndex *pindex; //! Optional. - int64_t nTime; //! Time of "getdata" request in microseconds. - bool fValidatedHeaders; //! Whether this block has validated headers at the time of request. - int64_t nTimeDisconnect; //! The timeout for this block request (for disconnecting a slow peer) + CBlockIndex* pindex; //!< Optional. + int64_t nTime; //!< Time of "getdata" request in microseconds. + bool fValidatedHeaders; //!< Whether this block has validated headers at the time of request. + int64_t nTimeDisconnect; //!< The timeout for this block request (for disconnecting a slow peer) }; map<uint256, pair<NodeId, list<QueuedBlock>::iterator> > mapBlocksInFlight; |