| 239 | bool Derive(CExtPubKey& out, unsigned int nChild) const; |
| 240 | |
| 241 | void Serialize(CSizeComputer& s) const |
| 242 | { |
| 243 | // Optimized implementation for ::GetSerializeSize that avoids copying. |
| 244 | s.seek(BIP32_EXTKEY_SIZE + 1); // add one byte for the size (compact int) |
| 245 | } |
| 246 | template <typename Stream> |
| 247 | void Serialize(Stream& s) const |
| 248 | { |
nothing calls this directly
no test coverage detected