diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2011-07-30 19:21:46 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2011-07-30 19:21:46 +0200 |
commit | f0ec774d9c3a95142d680a396dd4430bf301e78d (patch) | |
tree | 7e8bc2cbd40c3a580262e046bd5754db904765a0 /src/qt | |
parent | 04f38adf73b18ffb2bfb3e3cca76f0de951100b0 (diff) |
make sure address book model is up to date after sending coins
Diffstat (limited to 'src/qt')
-rw-r--r-- | src/qt/walletmodel.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/qt/walletmodel.cpp b/src/qt/walletmodel.cpp index 4d8d6fe450..53555cc08a 100644 --- a/src/qt/walletmodel.cpp +++ b/src/qt/walletmodel.cpp @@ -159,6 +159,7 @@ WalletModel::SendCoinsReturn WalletModel::sendCoins(const QList<SendCoinsRecipie wallet->SetAddressBookName(strAddress, rcp.label.toStdString()); } } + addressTableModel->updateList(); return SendCoinsReturn(OK, 0, hex); } |