| 112 | } |
| 113 | |
| 114 | bool CWalletDB::WriteMasterKey(unsigned int nID, const CMasterKey& kMasterKey) |
| 115 | { |
| 116 | nWalletDBUpdated++; |
| 117 | return Write(std::make_pair(std::string("mkey"), nID), kMasterKey, true); |
| 118 | } |
| 119 | |
| 120 | bool CWalletDB::WriteCScript(const uint160& hash, const CScript& redeemScript) |
| 121 | { |
no outgoing calls
no test coverage detected