| 294 | } |
| 295 | |
| 296 | bool CWallet::AddKeyPubKey(const CKey& secret, const CPubKey &pubkey) |
| 297 | { |
| 298 | WalletBatch batch(*database); |
| 299 | return CWallet::AddKeyPubKeyWithDB(batch, secret, pubkey); |
| 300 | } |
| 301 | |
| 302 | bool CWallet::AddCryptedKey(const CPubKey &vchPubKey, |
| 303 | const std::vector<unsigned char> &vchCryptedSecret) |
no outgoing calls