diff options
| author | Wladimir J. van der Laan <[email protected]> | 2017-02-02 10:21:06 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2017-02-02 11:57:40 +0100 |
| commit | 4e19efba033167ee530d36e22f404b74b09f7955 (patch) | |
| tree | fd08c1a26178d215c70b90b85d1c7f7cb526125e /src/rpc/mining.cpp | |
| parent | Merge #9580: Fix various minor linearization script issues (diff) | |
| parent | Remove redundant semicolons (diff) | |
| download | discoin-4e19efba033167ee530d36e22f404b74b09f7955.tar.xz discoin-4e19efba033167ee530d36e22f404b74b09f7955.zip | |
Merge #9556: Remove redundant semicolons
8fc6989 Remove redundant semicolons (practicalswift)
Diffstat (limited to 'src/rpc/mining.cpp')
| -rw-r--r-- | src/rpc/mining.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rpc/mining.cpp b/src/rpc/mining.cpp index e46f55a8a..c594daca0 100644 --- a/src/rpc/mining.cpp +++ b/src/rpc/mining.cpp @@ -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) |