diff options
| author | Shaul Kfir <[email protected]> | 2015-03-16 21:36:43 -0400 |
|---|---|---|
| committer | Shaul Kfir <[email protected]> | 2015-06-30 15:59:11 -0400 |
| commit | a651403e09ccc9ac0a3322e880d6543dd51a14bd (patch) | |
| tree | e138302775a76f9667a56fa5ea0e38e7fa1e2f89 /src/consensus | |
| parent | Merge pull request #6354 (diff) | |
| download | discoin-a651403e09ccc9ac0a3322e880d6543dd51a14bd.tar.xz discoin-a651403e09ccc9ac0a3322e880d6543dd51a14bd.zip | |
Add absurdly high fee message to validation state (for RPC propagation)
Diffstat (limited to 'src/consensus')
| -rw-r--r-- | src/consensus/validation.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/consensus/validation.h b/src/consensus/validation.h index a97d983a3..719e090a4 100644 --- a/src/consensus/validation.h +++ b/src/consensus/validation.h @@ -28,12 +28,12 @@ private: } mode; int nDoS; std::string strRejectReason; - unsigned char chRejectCode; + unsigned int chRejectCode; bool corruptionPossible; public: CValidationState() : mode(MODE_VALID), nDoS(0), chRejectCode(0), corruptionPossible(false) {} bool DoS(int level, bool ret = false, - unsigned char chRejectCodeIn=0, std::string strRejectReasonIn="", + unsigned int chRejectCodeIn=0, std::string strRejectReasonIn="", bool corruptionIn=false) { chRejectCode = chRejectCodeIn; strRejectReason = strRejectReasonIn; @@ -45,7 +45,7 @@ public: return ret; } bool Invalid(bool ret = false, - unsigned char _chRejectCode=0, std::string _strRejectReason="") { + unsigned int _chRejectCode=0, std::string _strRejectReason="") { return DoS(0, ret, _chRejectCode, _strRejectReason); } bool Error(const std::string& strRejectReasonIn) { @@ -73,7 +73,7 @@ public: bool CorruptionPossible() const { return corruptionPossible; } - unsigned char GetRejectCode() const { return chRejectCode; } + unsigned int GetRejectCode() const { return chRejectCode; } std::string GetRejectReason() const { return strRejectReason; } }; |