| 248 | } |
| 249 | |
| 250 | bool CWalletDB::ReadPool(int64_t nPool, CKeyPool& keypool) |
| 251 | { |
| 252 | return Read(std::make_pair(std::string("pool"), nPool), keypool); |
| 253 | } |
| 254 | |
| 255 | bool CWalletDB::WritePool(int64_t nPool, const CKeyPool& keypool) |
| 256 | { |
no test coverage detected