aboutsummaryrefslogtreecommitdiff
path: root/src/qt/walletmodel.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2011-07-30 19:21:46 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2011-07-30 19:21:46 +0200
commitf0ec774d9c3a95142d680a396dd4430bf301e78d (patch)
tree7e8bc2cbd40c3a580262e046bd5754db904765a0 /src/qt/walletmodel.cpp
parent04f38adf73b18ffb2bfb3e3cca76f0de951100b0 (diff)
downloadbitcoin-f0ec774d9c3a95142d680a396dd4430bf301e78d.tar.xz
make sure address book model is up to date after sending coins
Diffstat (limited to 'src/qt/walletmodel.cpp')
-rw-r--r--src/qt/walletmodel.cpp1
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);
}