File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ inline ValidationState::~ValidationState() {};
114
114
115
115
class TxValidationState : public ValidationState {
116
116
private:
117
- TxValidationResult m_result;
117
+ TxValidationResult m_result = TxValidationResult::TX_RESULT_UNSET ;
118
118
public:
119
119
bool Invalid (TxValidationResult result,
120
120
const std::string &reject_reason=" " ,
@@ -129,7 +129,7 @@ class TxValidationState : public ValidationState {
129
129
130
130
class BlockValidationState : public ValidationState {
131
131
private:
132
- BlockValidationResult m_result;
132
+ BlockValidationResult m_result = BlockValidationResult::BLOCK_RESULT_UNSET ;
133
133
public:
134
134
bool Invalid (BlockValidationResult result,
135
135
const std::string &reject_reason=" " ,
You can’t perform that action at this time.
0 commit comments