| 287 | } |
| 288 | |
| 289 | bool CWalletDB::WriteKeyStoreValue(const CKeyID& keyId, const CKeyCombi& KeyCombi, int32_t nVersion) { |
| 290 | nWalletDBUpdated++; |
| 291 | // cout << "keystore:" << "Keyid=" << keyId.ToAddress() << " KeyCombi:" << KeyCombi.ToString() << endl; |
| 292 | return Write(make_pair(string("keystore"), keyId), KeyCombi, true, nVersion); |
| 293 | } |
| 294 | |
| 295 | bool CWalletDB::EraseKeyStoreValue(const CKeyID& keyId) { |
| 296 | nWalletDBUpdated++; |
no outgoing calls
no test coverage detected