| 190 | void SetMaster(const unsigned char* seed, unsigned int nSeedLen); |
| 191 | template <typename Stream> |
| 192 | void Serialize(Stream& s, int nType, int nVersion) const |
| 193 | { |
| 194 | unsigned int len = BIP32_EXTKEY_SIZE; |
| 195 | ::WriteCompactSize(s, len); |
| 196 | unsigned char code[BIP32_EXTKEY_SIZE]; |
| 197 | Encode(code); |
| 198 | s.write((const char *)&code[0], len); |
| 199 | } |
| 200 | template <typename Stream> |
| 201 | void Unserialize(Stream& s, int nType, int nVersion) |
| 202 | { |
nothing calls this directly
no test coverage detected