diff options
author | Russell Yanofsky <russ@yanofsky.org> | 2018-03-31 06:41:33 -0400 |
---|---|---|
committer | John Newbery <john@johnnewbery.com> | 2018-04-04 16:52:41 -0400 |
commit | 9a61eed1fcc16ddcedc315045f470e1958b0760b (patch) | |
tree | 9cdebba8a3d35617f02b70dcf09ad0d8e277db94 /src/qt/walletmodel.h | |
parent | 56f33ca349b3721a15fce3bf0b6d4fd7fd788970 (diff) |
Use WalletBalances struct in Qt
Suggested by John Newbery <john@johnnewbery.com>
https://github.com/bitcoin/bitcoin/pull/10244#discussion_r177504284
Diffstat (limited to 'src/qt/walletmodel.h')
-rw-r--r-- | src/qt/walletmodel.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/qt/walletmodel.h b/src/qt/walletmodel.h index cf757fd2b3..bc409b10ee 100644 --- a/src/qt/walletmodel.h +++ b/src/qt/walletmodel.h @@ -237,8 +237,7 @@ private: Q_SIGNALS: // Signal that balance in wallet changed - void balanceChanged(const CAmount& balance, const CAmount& unconfirmedBalance, const CAmount& immatureBalance, - const CAmount& watchOnlyBalance, const CAmount& watchUnconfBalance, const CAmount& watchImmatureBalance); + void balanceChanged(const interface::WalletBalances& balances); // Encryption status of wallet changed void encryptionStatusChanged(); |