| 224 | bool Derive(CExtPubKey& out, unsigned int nChild) const; |
| 225 | |
| 226 | void Serialize(CSizeComputer& s) const |
| 227 | { |
| 228 | // Optimized implementation for ::GetSerializeSize that avoids copying. |
| 229 | s.seek(BIP32_EXTKEY_SIZE + 1); // add one byte for the size (compact int) |
| 230 | } |
| 231 | template <typename Stream> |
| 232 | void Serialize(Stream& s) const |
| 233 | { |
nothing calls this directly
no test coverage detected