From b88cb266f8730f171f36fd20fbcb2c4b9d801539 Mon Sep 17 00:00:00 2001 From: Marek Kotewicz Date: Wed, 10 Jun 2015 12:28:32 +0200 Subject: [PATCH] renamed log type "block" -> "mined" --- libweb3jsonrpc/WebThreeStubServerBase.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libweb3jsonrpc/WebThreeStubServerBase.cpp b/libweb3jsonrpc/WebThreeStubServerBase.cpp index ea3224471..8b7578806 100644 --- a/libweb3jsonrpc/WebThreeStubServerBase.cpp +++ b/libweb3jsonrpc/WebThreeStubServerBase.cpp @@ -173,7 +173,7 @@ static Json::Value toJson(dev::eth::LocalisedLogEntry const& _e) res["topics"].append(toJS(t)); if (_e.mined) { - res["type"] = "block"; + res["type"] = "mined"; res["blockNumber"] = _e.blockNumber; res["blockHash"] = toJS(_e.blockHash); res["logIndex"] = _e.logIndex;