Browse Source

Disable broken bit of mix.

cl-refactor
Gav Wood 10 years ago
parent
commit
e498608216
  1. 2
      libqwebthree/QWebThree.cpp
  2. 5
      mix/ClientModel.cpp

2
libqwebthree/QWebThree.cpp

@ -58,7 +58,7 @@ QString QWebThree::callMethod(QString _json)
return m_response;
}
void QWebThree::onDataProcessed(QString _json, QString _addInfo)
void QWebThree::onDataProcessed(QString _json, QString)
{
QJsonObject f = QJsonDocument::fromJson(_json.toUtf8()).object();
syncResponse(QString::fromUtf8(QJsonDocument(f).toJson()));

5
mix/ClientModel.cpp

@ -68,9 +68,10 @@ ClientModel::~ClientModel()
{
}
void ClientModel::apiRequest(const QString& _message)
void ClientModel::apiRequest(QString const& _message)
{
m_qWebThree->postMessage(_message);
(void)_message;
// m_qWebThree->postMessage(_message);
}
QString ClientModel::contractAddress() const

Loading…
Cancel
Save