From 5b44a75493a1a098404d5e21dc384e74eae1892e Mon Sep 17 00:00:00 2001 From: Sebastian Falbesoner Date: Tue, 22 Oct 2019 00:07:31 +0200 Subject: refactor: Remove unused CExt{Pub,}Key (de)serialization methods The serialization/deserialization methods for the classes CExtKey and CExtPubKey were only used in the BIP32 unit tests, where the relevant parts are removed as well. --- src/key.h | 19 ------------------- 1 file changed, 19 deletions(-) (limited to 'src/key.h') diff --git a/src/key.h b/src/key.h index 67e2cfc094..6a86b0411d 100644 --- a/src/key.h +++ b/src/key.h @@ -162,25 +162,6 @@ struct CExtKey { bool Derive(CExtKey& out, unsigned int nChild) const; CExtPubKey Neuter() const; void SetSeed(const unsigned char* seed, unsigned int nSeedLen); - template - void Serialize(Stream& s) const - { - unsigned int len = BIP32_EXTKEY_SIZE; - ::WriteCompactSize(s, len); - unsigned char code[BIP32_EXTKEY_SIZE]; - Encode(code); - s.write((const char *)&code[0], len); - } - template - void Unserialize(Stream& s) - { - unsigned int len = ::ReadCompactSize(s); - unsigned char code[BIP32_EXTKEY_SIZE]; - if (len != BIP32_EXTKEY_SIZE) - throw std::runtime_error("Invalid extended key size\n"); - s.read((char *)&code[0], len); - Decode(code); - } }; /** Initialize the elliptic curve support. May not be called twice without calling ECC_Stop first. */ -- cgit v1.2.3