mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-19 13:27:35 +02:00
Remove redundant semicolons
This commit is contained in:
parent
02e5308c1b
commit
8fc698935f
3 changed files with 4 additions and 4 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue