diff options
| author | MarcoFalke <[email protected]> | 2017-08-16 02:09:10 +0200 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2017-08-16 02:09:49 +0200 |
| commit | b6a48914c50631914192aa11b19205436a9c664d (patch) | |
| tree | 748ac6a80402b05e58f249bca71de2cb6a626ee8 /src/wallet/db.h | |
| parent | Merge #11011: [Trivial] Add a comment on the use of prevector in script. (diff) | |
| parent | Add const to methods that do not modify the object for which it is called (diff) | |
| download | discoin-b6a48914c50631914192aa11b19205436a9c664d.tar.xz discoin-b6a48914c50631914192aa11b19205436a9c664d.zip | |
Merge #9964: Add const to methods that do not modify the object for which it is called
6e8c48dc5 Add const to methods that do not modify the object for which it is called (practicalswift)
Pull request description:
Tree-SHA512: a6888111ba16fb796e320e60806e1a77d36f545989b5405dc7319992291800109eab0b8e8c286b784778f41f1ff5289e7cb6b4afd7aec77f385fbcafc02cffc1
Diffstat (limited to 'src/wallet/db.h')
| -rw-r--r-- | src/wallet/db.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/db.h b/src/wallet/db.h index 3614e34fb..6f3cfe955 100644 --- a/src/wallet/db.h +++ b/src/wallet/db.h @@ -45,7 +45,7 @@ public: void Reset(); void MakeMock(); - bool IsMock() { return fMockDb; } + bool IsMock() const { return fMockDb; } /** * Verify that database file strFile is OK. If it is not, |