- 5E302C824B6802E5AC88277F9DCCA66B645A2E6932713EF817B6E3352CEF123BB4492FDB19ACAE7236A090715770D9D623C209218BCD2745C1277D3172EF30D5
+ 8BB123A590F5D5A536628E640847DF536F8857AFEBA467F2503DEEB728576FF0CFB2C450159D7E303D6292113DBA473A16C364507D57290216EDBC73B2A2396C
bitcoin/src/keystore.h
(28 . 6)(28 . 15)
175 // This may succeed even if GetKey fails (e.g., encrypted wallets)
176 virtual bool GetPubKey(const CBitcoinAddress &address, std::vector<unsigned char>& vchPubKeyOut) const;
177
178 virtual bool GetSecret(const CBitcoinAddress &address, CSecret& vchSecret) const
179 {
180 CKey key;
181 if (!GetKey(address, key))
182 return false;
183 vchSecret = key.GetSecret();
184 return true;
185 }
186
187 // Generate a new key, and add it to the store
188 virtual std::vector<unsigned char> GenerateNewKey();
189 };