diff options
| author | Gavin Andresen <[email protected]> | 2014-02-15 08:56:55 -0500 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2014-02-15 08:56:55 -0500 |
| commit | 085c62149ad19cecf235829e49df07884a279e1e (patch) | |
| tree | 4106ba96196e883464f5891ef88be34514c67cb9 /src/walletdb.cpp | |
| parent | Merge pull request #3669 from gavinandresen/dead_txns (diff) | |
| parent | Track and report wallet transaction clones (diff) | |
| download | discoin-085c62149ad19cecf235829e49df07884a279e1e.tar.xz discoin-085c62149ad19cecf235829e49df07884a279e1e.zip | |
Merge pull request #3671 from gavinandresen/txn_conflicts
Report transaction conflicts, and tentative account balance fix
Diffstat (limited to 'src/walletdb.cpp')
| -rw-r--r-- | src/walletdb.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/walletdb.cpp b/src/walletdb.cpp index b3cc9a235..2f8c827bc 100644 --- a/src/walletdb.cpp +++ b/src/walletdb.cpp @@ -382,7 +382,7 @@ ReadKeyValue(CWallet* pwallet, CDataStream& ssKey, CDataStream& ssValue, if (wtx.nOrderPos == -1) wss.fAnyUnordered = true; - pwallet->mapWallet[hash] = wtx; + pwallet->AddToWallet(wtx, true); //// debug print //LogPrintf("LoadWallet %s\n", wtx.GetHash().ToString()); //LogPrintf(" %12"PRId64" %s %s %s\n", |