Remove direct bitcoin access from qt/guiutil.cpp

This commit is contained in:
Russell Yanofsky
2017-04-18 17:06:13 -04:00
committed by John Newbery
parent 58845587e1
commit e872c93ee8
5 changed files with 13 additions and 8 deletions

View File

@@ -226,7 +226,7 @@ void SendCoinsDialog::on_sendButton_clicked()
SendCoinsEntry *entry = qobject_cast<SendCoinsEntry*>(ui->entries->itemAt(i)->widget());
if(entry)
{
if(entry->validate())
if(entry->validate(model->node()))
{
recipients.append(entry->getValue());
}