| 342 | } |
| 343 | |
| 344 | bool CWalletDB::WriteMasterKey(uint32_t nID, const CMasterKey& kMasterKey) { |
| 345 | nWalletDBUpdated++; |
| 346 | return Write(std::make_pair(std::string("mkey"), nID), kMasterKey, true); |
| 347 | } |
| 348 | |
| 349 | bool CWalletDB::EraseMasterKey(uint32_t nID) { |
| 350 | nWalletDBUpdated++; |
no outgoing calls
no test coverage detected