aboutsummaryrefslogtreecommitdiff
path: root/src/rpcmining.cpp
diff options
context:
space:
mode:
authorENikS <evgeni@eniks.com>2014-09-05 11:37:01 -0400
committerWladimir J. van der Laan <laanwj@gmail.com>2014-09-15 14:35:32 +0200
commitec91092df8f70c4abef6bbb3c4dec6d9511405fe (patch)
tree96e1d0d2930a6a4bb1942504450a1189e16244bc /src/rpcmining.cpp
parentf3d4f1e5a18431b5cd054698deacd9d7009b0eae (diff)
downloadbitcoin-ec91092df8f70c4abef6bbb3c4dec6d9511405fe.tar.xz
Fixing compiler warning C4101
Github-Pull: #4856
Diffstat (limited to 'src/rpcmining.cpp')
-rw-r--r--src/rpcmining.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpcmining.cpp b/src/rpcmining.cpp
index e4a5bc4162..1613f04708 100644
--- a/src/rpcmining.cpp
+++ b/src/rpcmining.cpp
@@ -553,7 +553,7 @@ Value submitblock(const Array& params, bool fHelp)
try {
ssBlock >> pblock;
}
- catch (std::exception &e) {
+ catch (const std::exception &) {
throw JSONRPCError(RPC_DESERIALIZATION_ERROR, "Block decode failed");
}