mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-08 10:31:50 -05:00
qt, refactor: Declare getWalletModel with const and noexcept qualifiers
This commit is contained in:
parent
ca0e680bdc
commit
92ddc02a16
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ public:
|
|||
The client model represents the part of the core that communicates with the P2P network, and is wallet-agnostic.
|
||||
*/
|
||||
void setClientModel(ClientModel *clientModel);
|
||||
WalletModel *getWalletModel() { return walletModel; }
|
||||
WalletModel* getWalletModel() const noexcept { return walletModel; }
|
||||
|
||||
bool handlePaymentRequest(const SendCoinsRecipient& recipient);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue