diff options
author | Cory Fields <cory-nospam-@coryfields.com> | 2017-07-12 16:48:36 -0400 |
---|---|---|
committer | Cory Fields <cory-nospam-@coryfields.com> | 2017-07-17 11:34:38 -0400 |
commit | 9a1675ee5b27f8634f9917a1f80904c9319739d3 (patch) | |
tree | bf734d7b8eca833817f3b2ec1790884d8d8507b6 /src/wallet/wallet.h | |
parent | 0b019357ff09e7a522307fc271d6b60562a7b890 (diff) |
optim: mark a few classes final
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 06937566b0..9901f5f8c0 100644 --- a/src/wallet/wallet.h +++ b/src/wallet/wallet.h @@ -648,7 +648,7 @@ private: * A CWallet is an extension of a keystore, which also maintains a set of transactions and balances, * and provides the ability to create new transactions. */ -class CWallet : public CCryptoKeyStore, public CValidationInterface +class CWallet final : public CCryptoKeyStore, public CValidationInterface { private: static std::atomic<bool> fFlushScheduled; |