aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <[email protected]>2016-04-05 17:49:42 +0200
committerWladimir J. van der Laan <[email protected]>2016-04-05 17:49:47 +0200
commit1b2460bd5824170ab85757e35f81197199cce9d6 (patch)
tree8c2271dbc6f98342c86a8ae1c65dc385b9c70d8e /src/main.cpp
parentMerge #7788: Use relative paths instead of absolute paths in protoc calls (diff)
parent[doc] Fix doxygen comments for members (diff)
downloaddiscoin-1b2460bd5824170ab85757e35f81197199cce9d6.tar.xz
discoin-1b2460bd5824170ab85757e35f81197199cce9d6.zip
Merge #7793: [doxygen] Fix member comments
fada0c4 [doc] Fix doxygen comments for members (MarcoFalke)
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp8
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;