diff options
| author | Gavin Andresen <[email protected]> | 2013-07-15 15:20:50 +1000 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2013-08-22 11:05:45 +1000 |
| commit | 618855133d4ae4ece130aec3b35c5a65bea95b8f (patch) | |
| tree | fbbaf4bfdf5751ad24635fdcb4b633d71433a2d0 /src/walletdb.cpp | |
| parent | GetDataDir(): cache paths for each network separately (diff) | |
| download | discoin-618855133d4ae4ece130aec3b35c5a65bea95b8f.tar.xz discoin-618855133d4ae4ece130aec3b35c5a65bea95b8f.zip | |
Refactor: CAddressBookData for mapAddressBook
Straight refactor, so mapAddressBook stores a CAddressBookData
(which just contains a std::string) instead of a std::string.
Preparation for payment protocol work, which will add the notion
of refund addresses to the address book.
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 014d8cbe2..6cfd394bd 100644 --- a/src/walletdb.cpp +++ b/src/walletdb.cpp @@ -212,7 +212,7 @@ ReadKeyValue(CWallet* pwallet, CDataStream& ssKey, CDataStream& ssValue, { string strAddress; ssKey >> strAddress; - ssValue >> pwallet->mapAddressBook[CBitcoinAddress(strAddress).Get()]; + ssValue >> pwallet->mapAddressBook[CBitcoinAddress(strAddress).Get()].name; } else if (strType == "tx") { |