| 151 | } |
| 152 | |
| 153 | bool WalletBatch::ReadAccount(const std::string& strAccount, CAccount& account) |
| 154 | { |
| 155 | account.SetNull(); |
| 156 | return m_batch.Read(std::make_pair(std::string("acc"), strAccount), account); |
| 157 | } |
| 158 | |
| 159 | bool WalletBatch::WriteAccount(const std::string& strAccount, const CAccount& account) |
| 160 | { |
no test coverage detected