mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-03-24 14:40:12 +01:00
Remove redundant semicolons
This commit is contained in:
@@ -697,7 +697,7 @@ public:
|
||||
bool found;
|
||||
CValidationState state;
|
||||
|
||||
submitblock_StateCatcher(const uint256 &hashIn) : hash(hashIn), found(false), state() {};
|
||||
submitblock_StateCatcher(const uint256 &hashIn) : hash(hashIn), found(false), state() {}
|
||||
|
||||
protected:
|
||||
virtual void BlockChecked(const CBlock& block, const CValidationState& stateIn) {
|
||||
@@ -705,7 +705,7 @@ protected:
|
||||
return;
|
||||
found = true;
|
||||
state = stateIn;
|
||||
};
|
||||
}
|
||||
};
|
||||
|
||||
UniValue submitblock(const JSONRPCRequest& request)
|
||||
|
||||
Reference in New Issue
Block a user