| 128 | } |
| 129 | |
| 130 | bool CWalletDB::WriteMasterKey(unsigned int nID, const CMasterKey& kMasterKey) |
| 131 | { |
| 132 | nWalletDBUpdateCounter++; |
| 133 | return Write(std::make_pair(std::string("mkey"), nID), kMasterKey, true); |
| 134 | } |
| 135 | |
| 136 | bool CWalletDB::WriteCScript(const uint160& hash, const CScript& redeemScript) |
| 137 | { |
no outgoing calls
no test coverage detected