qt: Hide non PKHash-Addresses in signing address book

This commit is contained in:
Emil Engler
2020-01-13 19:50:44 +01:00
parent 2ed74a43a0
commit c4ea501e96
6 changed files with 16 additions and 5 deletions

View File

@@ -563,3 +563,8 @@ bool WalletModel::isMultiwallet()
{
return m_node.getWallets().size() > 1;
}
void WalletModel::refresh(bool pk_hash_only)
{
addressTableModel = new AddressTableModel(this, pk_hash_only);
}