Code style fix (no "tab" symbol).
[novacoin.git] / src / key.h
index bf1557a..2d8e618 100644 (file)
--- a/src/key.h
+++ b/src/key.h
@@ -224,6 +224,7 @@ public:
         pubKeyL = mpk.pubKeyL;
         pubKeyH = mpk.pubKeyH;
     }
+    CMalleablePubKey(const std::vector<unsigned char> &vchPubKeyPair) { setvch(vchPubKeyPair); }
     CMalleablePubKey(const std::string& strMalleablePubKey) { SetString(strMalleablePubKey); }
     CMalleablePubKey(const CPubKey &pubKeyInL, const CPubKey &pubKeyInH) : pubKeyL(pubKeyInL), pubKeyH(pubKeyInH) { }
 
@@ -251,6 +252,7 @@ public:
         return pubKeyL.GetID();
     }
 
+    bool setvch(const std::vector<unsigned char> &vchPubKeyPair);
     std::vector<unsigned char> Raw() const;
 
     CPubKey& GetL() { return pubKeyL; }