| 270 | } |
| 271 | |
| 272 | bool CWalletDB::ReadAccount(const string& strAccount, CAccount& account) |
| 273 | { |
| 274 | account.SetNull(); |
| 275 | return Read(make_pair(string("acc"), strAccount), account); |
| 276 | } |
| 277 | |
| 278 | bool CWalletDB::WriteAccount(const string& strAccount, const CAccount& account) |
| 279 | { |
no test coverage detected