aboutsummaryrefslogtreecommitdiff
path: root/src/consensus
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2016-06-29 11:48:51 +0200
committerMarcoFalke <falke.marco@gmail.com>2016-08-22 10:51:41 +0200
commitfa27c0a2c4545a579bf339e816c3fa785252b7dc (patch)
treee30aae360ff6220129695cccd92b44db410c7157 /src/consensus
parentfabfd5dae28cbe26e71d50dbfb6feab03673f27a (diff)
downloadbitcoin-fa27c0a2c4545a579bf339e816c3fa785252b7dc.tar.xz
[doc] Fix typos in comments, doxygen: Fix comment syntax
Diffstat (limited to 'src/consensus')
-rw-r--r--src/consensus/validation.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/consensus/validation.h b/src/consensus/validation.h
index 000b197270..3e24294a64 100644
--- a/src/consensus/validation.h
+++ b/src/consensus/validation.h
@@ -22,9 +22,9 @@ static const unsigned char REJECT_CHECKPOINT = 0x43;
class CValidationState {
private:
enum mode_state {
- MODE_VALID, //! everything ok
- MODE_INVALID, //! network rule violation (DoS value may be set)
- MODE_ERROR, //! run-time error
+ MODE_VALID, //!< everything ok
+ MODE_INVALID, //!< network rule violation (DoS value may be set)
+ MODE_ERROR, //!< run-time error
} mode;
int nDoS;
std::string strRejectReason;