- 247C94EA309F95DDC3B90DCD41DD9212BD5269E8772816BB272A1152422CC1C50BEAD6370495043A9ABC924E119C926D55ECD7F39D1022C7D4EB50718188A641
+ ED95D6650AE506D0883462041D5035216FDB08534E179EA59DEABF5226CE23B6922B0A5FF005202F7732265FBB6B5A4612BDBC7D950D6FB921BABBF6BBA83C77
bitcoin/src/keystore.h
(28 . 6)(28 . 15)
198 // This may succeed even if GetKey fails (e.g., encrypted wallets)
199 virtual bool GetPubKey(const CBitcoinAddress &address, std::vector<unsigned char>& vchPubKeyOut) const;
200
201 virtual bool GetSecret(const CBitcoinAddress &address, CSecret& vchSecret) const
202 {
203 CKey key;
204 if (!GetKey(address, key))
205 return false;
206 vchSecret = key.GetSecret();
207 return true;
208 }
209
210 // Generate a new key, and add it to the store
211 virtual std::vector<unsigned char> GenerateNewKey();
212 };