diff options
author | Karl-Johan Alm <karljohan-alm@garage.co.jp> | 2020-03-02 15:57:25 +0900 |
---|---|---|
committer | Karl-Johan Alm <karljohan-alm@garage.co.jp> | 2020-03-02 17:26:30 +0900 |
commit | dc2d0650fdb69d27fe1b0092555b7841d542a635 (patch) | |
tree | d7d5de77c40f5118148187cbc723205b35bd0b1d /src/wallet/wallet.h | |
parent | 54a7ef612a3b69984d521432f8a694a682c76090 (diff) |
make BlockUntilSyncedToCurrentChain() const
The method checks the chain tip for the best block, and calls SyncWithValidationInterfaceQueue() (a standalone function) if necessary.
Diffstat (limited to 'src/wallet/wallet.h')
-rw-r--r-- | src/wallet/wallet.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet.h b/src/wallet/wallet.h index 6c1c3040c2..668976a574 100644 --- a/src/wallet/wallet.h +++ b/src/wallet/wallet.h @@ -1112,7 +1112,7 @@ public: * Obviously holding cs_main/cs_wallet when going into this call may cause * deadlock */ - void BlockUntilSyncedToCurrentChain() LOCKS_EXCLUDED(cs_main, cs_wallet); + void BlockUntilSyncedToCurrentChain() const LOCKS_EXCLUDED(cs_main, cs_wallet); /** set a single wallet flag */ void SetWalletFlag(uint64_t flags); |