diff options
| author | Luke Dashjr <[email protected]> | 2012-09-06 22:09:37 +0000 |
|---|---|---|
| committer | Luke Dashjr <[email protected]> | 2012-09-06 22:09:37 +0000 |
| commit | f210c74398d1dab7ed4affb489003f4c83256794 (patch) | |
| tree | 0fcedbd25d24bdf13cef42a00c11fd8715879fe0 /src/wallet.cpp | |
| parent | Remove json/*.cpp from Qt build system (diff) | |
| parent | Correct LoadWallet() return value (false -> DB_LOAD_OK) (diff) | |
| download | discoin-f210c74398d1dab7ed4affb489003f4c83256794.tar.xz discoin-f210c74398d1dab7ed4affb489003f4c83256794.zip | |
Merge branch '0.4.x' into 0.5.x
Diffstat (limited to 'src/wallet.cpp')
| -rw-r--r-- | src/wallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet.cpp b/src/wallet.cpp index 9ce80e704..b828473df 100644 --- a/src/wallet.cpp +++ b/src/wallet.cpp @@ -1149,7 +1149,7 @@ string CWallet::SendMoneyToBitcoinAddress(const CBitcoinAddress& address, int64 int CWallet::LoadWallet(bool& fFirstRunRet) { if (!fFileBacked) - return false; + return DB_LOAD_OK; fFirstRunRet = false; int nLoadWalletRet = CWalletDB(strWalletFile,"cr+").LoadWallet(this); if (nLoadWalletRet == DB_NEED_REWRITE) |