wallet/db: make IsDummy() const

This method does a simple check and no modifications.
This commit is contained in:
Karl-Johan Alm 2020-03-02 16:39:52 +09:00
parent d366795d18
commit 7b3587b29d
No known key found for this signature in database
GPG key ID: 57AF762DB3353322

View file

@ -193,7 +193,7 @@ private:
* Only to be used at a low level, application should ideally not care
* about this.
*/
bool IsDummy() { return env == nullptr; }
bool IsDummy() const { return env == nullptr; }
};
/** RAII class that provides access to a Berkeley database */