create and add cid to Addressbook
This commit is contained in:
@@ -1296,7 +1296,7 @@ void MainWindow::setupReceiveTab() {
|
||||
|
||||
if (!curLabel.isEmpty() && label.isEmpty()) {
|
||||
info = "Removed Label '" % curLabel % "'";
|
||||
AddressBook::getInstance()->removeAddressLabel(curLabel, addr, "");
|
||||
AddressBook::getInstance()->removeAddressLabel(curLabel, addr, "", "");
|
||||
}
|
||||
else if (!curLabel.isEmpty() && !label.isEmpty()) {
|
||||
info = "Updated Label '" % curLabel % "' to '" % label % "'";
|
||||
@@ -1304,7 +1304,7 @@ void MainWindow::setupReceiveTab() {
|
||||
}
|
||||
else if (curLabel.isEmpty() && !label.isEmpty()) {
|
||||
info = "Added Label '" % label % "'";
|
||||
AddressBook::getInstance()->addAddressLabel(label, addr, "");
|
||||
AddressBook::getInstance()->addAddressLabel(label, addr, "", "");
|
||||
}
|
||||
|
||||
// Update labels everywhere on the UI
|
||||
|
||||
Reference in New Issue
Block a user