diff options
| author | MarcoFalke <[email protected]> | 2016-06-29 11:48:51 +0200 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2016-08-22 10:51:41 +0200 |
| commit | fa27c0a2c4545a579bf339e816c3fa785252b7dc (patch) | |
| tree | e30aae360ff6220129695cccd92b44db410c7157 /src/consensus/validation.h | |
| parent | [qa] pull-tester: Don't mute zmq ImportError (diff) | |
| download | discoin-fa27c0a2c4545a579bf339e816c3fa785252b7dc.tar.xz discoin-fa27c0a2c4545a579bf339e816c3fa785252b7dc.zip | |
[doc] Fix typos in comments, doxygen: Fix comment syntax
Diffstat (limited to 'src/consensus/validation.h')
| -rw-r--r-- | src/consensus/validation.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/consensus/validation.h b/src/consensus/validation.h index 000b19727..3e24294a6 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; |