Browse Source

Minor log fix.

cl-refactor
Gav Wood 11 years ago
parent
commit
9b5120c752
  1. 2
      libqethereum/QEthereum.cpp

2
libqethereum/QEthereum.cpp

@ -461,7 +461,7 @@ QString QEthereum::doTransact(QString _json)
if (!t.gas)
t.gas = min<u256>(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);

Loading…
Cancel
Save