| 232 | } |
| 233 | |
| 234 | static CPubKey UnserializePubkey(const std::vector<uint8_t>& data) |
| 235 | { |
| 236 | CDataStream stream{SER_NETWORK, INIT_PROTO_VERSION}; |
| 237 | stream << data; |
| 238 | CPubKey pubkey; |
| 239 | stream >> pubkey; |
| 240 | return pubkey; |
| 241 | } |
| 242 | |
| 243 | static unsigned int GetLen(unsigned char chHeader) |
| 244 | { |
no outgoing calls
no test coverage detected