diff options
| author | Luke Dashjr <[email protected]> | 2012-09-08 04:55:36 +0000 |
|---|---|---|
| committer | Luke Dashjr <[email protected]> | 2012-09-08 04:55:36 +0000 |
| commit | da7b8c1260d91e3306eb18dd65633567cb31332f (patch) | |
| tree | 1fad88d0c8f5bb0953887c268e9a5a55910931d8 /src/walletdb.h | |
| parent | Bugfix: Require OrderedTxItems to provide properly scoped accounting entry list (diff) | |
| download | discoin-da7b8c1260d91e3306eb18dd65633567cb31332f.tar.xz discoin-da7b8c1260d91e3306eb18dd65633567cb31332f.zip | |
Bugfix: Initialize CWallet::nOrderPosNext on an empty wallet, and save it in db
Diffstat (limited to 'src/walletdb.h')
| -rw-r--r-- | src/walletdb.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/walletdb.h b/src/walletdb.h index 187be65a9..d339d4c3f 100644 --- a/src/walletdb.h +++ b/src/walletdb.h @@ -115,6 +115,12 @@ public: return Read(std::string("bestblock"), locator); } + bool WriteOrderPosNext(int64 nOrderPosNext) + { + nWalletDBUpdated++; + return Write(std::string("orderposnext"), nOrderPosNext); + } + bool ReadDefaultKey(std::vector<unsigned char>& vchPubKey) { vchPubKey.clear(); |