From d26588752e88bb534d18b2c7c481fcccafda1c23 Mon Sep 17 00:00:00 2001 From: Gav Wood Date: Tue, 22 Jul 2014 21:35:04 +0200 Subject: [PATCH] Version bump. --- libethential/Common.cpp | 2 +- libqethereum/QEthereum.cpp | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/libethential/Common.cpp b/libethential/Common.cpp index 48202250d..50ce71a40 100644 --- a/libethential/Common.cpp +++ b/libethential/Common.cpp @@ -27,6 +27,6 @@ using namespace eth; namespace eth { -char const* EthVersion = "0.5.16"; +char const* EthVersion = "0.6.0"; } diff --git a/libqethereum/QEthereum.cpp b/libqethereum/QEthereum.cpp index bbc7268da..520547f64 100644 --- a/libqethereum/QEthereum.cpp +++ b/libqethereum/QEthereum.cpp @@ -418,6 +418,7 @@ QString QEthereum::getTransactions(QString _a) const for (eth::PastMessage const& t: m_client->transactions(filter)) { QJsonObject v; + v["data"] = ::fromBinary(t.input); v["input"] = ::fromBinary(t.input); v["output"] = ::fromBinary(t.output); v["to"] = toQJS(t.to);