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() {};
114114
115115class TxValidationState : public ValidationState {
116116private:
117- TxValidationResult m_result;
117+ TxValidationResult m_result = TxValidationResult::TX_RESULT_UNSET ;
118118public:
119119 bool Invalid (TxValidationResult result,
120120 const std::string &reject_reason=" " ,
@@ -129,7 +129,7 @@ class TxValidationState : public ValidationState {
129129
130130class BlockValidationState : public ValidationState {
131131private:
132- BlockValidationResult m_result;
132+ BlockValidationResult m_result = BlockValidationResult::BLOCK_RESULT_UNSET ;
133133public:
134134 bool Invalid (BlockValidationResult result,
135135 const std::string &reject_reason=" " ,
You can’t perform that action at this time.
0 commit comments