From 7355368df1a3acd6c250f61c877d10eb4fec3f5d Mon Sep 17 00:00:00 2001 From: Marek Kotewicz Date: Mon, 15 Jun 2015 04:50:26 +0200 Subject: [PATCH] missing return in toJsonEx --- libweb3jsonrpc/WebThreeStubServerBase.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libweb3jsonrpc/WebThreeStubServerBase.cpp b/libweb3jsonrpc/WebThreeStubServerBase.cpp index 54568672e..f750ea692 100644 --- a/libweb3jsonrpc/WebThreeStubServerBase.cpp +++ b/libweb3jsonrpc/WebThreeStubServerBase.cpp @@ -246,6 +246,8 @@ static Json::Value toJsonEx(dev::eth::LocalisedLogEntries const& _es) res.append(currentBlock); } + + return res; } static Json::Value toJson(dev::eth::LocalisedLogEntries const& _es)