From 06dbf47763714e35b87e3e5a7317ce3e197c939c Mon Sep 17 00:00:00 2001 From: Gav Wood Date: Fri, 16 Jan 2015 17:58:09 -0500 Subject: [PATCH] Make owed-accounts update in AZ. --- alethzero/MainWin.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/alethzero/MainWin.cpp b/alethzero/MainWin.cpp index bf94ab380..66c66face 100644 --- a/alethzero/MainWin.cpp +++ b/alethzero/MainWin.cpp @@ -343,6 +343,9 @@ void Main::onNewBlock() refreshBlockCount(); refreshBlockChain(); refreshAccounts(); + + // We must update balances since we can't filter updates to basic accounts. + refreshBalances(); } void Main::onNewPending()