| 36 | // |
| 37 | |
| 38 | bool CWalletDB::WriteName(const string& strAddress, const string& strName) |
| 39 | { |
| 40 | nWalletDBUpdateCounter++; |
| 41 | return Write(make_pair(string("name"), strAddress), strName); |
| 42 | } |
| 43 | |
| 44 | bool CWalletDB::EraseName(const string& strAddress) |
| 45 | { |