diff options
| author | practicalswift <[email protected]> | 2017-01-14 21:45:32 +0100 |
|---|---|---|
| committer | practicalswift <[email protected]> | 2017-01-14 21:45:32 +0100 |
| commit | 8fc698935f01a9f0675e509761fb69be8d43e80a (patch) | |
| tree | 201d7116d80819c3fc4009487c73629e2e2a72db /src/rpc/mining.cpp | |
| parent | Merge #9525: test: Include tx data in EXTRA_DIST (diff) | |
| download | discoin-8fc698935f01a9f0675e509761fb69be8d43e80a.tar.xz discoin-8fc698935f01a9f0675e509761fb69be8d43e80a.zip | |
Remove redundant semicolons
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) |