From 9b5120c752f448558b8a50d2205d75e7011d3205 Mon Sep 17 00:00:00 2001 From: Gav Wood Date: Sun, 19 Oct 2014 19:57:19 +0300 Subject: [PATCH] Minor log fix. --- libqethereum/QEthereum.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libqethereum/QEthereum.cpp b/libqethereum/QEthereum.cpp index 8da5ed8cd..197b5052f 100644 --- a/libqethereum/QEthereum.cpp +++ b/libqethereum/QEthereum.cpp @@ -461,7 +461,7 @@ QString QEthereum::doTransact(QString _json) if (!t.gas) t.gas = min(client()->gasLimitRemaining(), client()->balanceAt(t.from) / t.gasPrice); - cwarn << "Silently signing transaction from address" << toAddress(t.from).abridged() << ": User validation hook goes here."; + cwarn << "Silently signing transaction from address" << t.from.abridged() << ": User validation hook goes here."; if (t.to) // TODO: insert validification hook here. client()->transact(m_accounts[t.from].secret(), t.value, t.to, t.data, t.gas, t.gasPrice);