From 0f16669987cc71ad3f114e01f4237bf4c3b15fa9 Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Fri, 8 Jun 2012 15:56:41 -0700 Subject: [PATCH] Bufix. --- src/key.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/key.h b/src/key.h index 6caad3db53..2d1eeb253a 100644 --- a/src/key.h +++ b/src/key.h @@ -149,7 +149,7 @@ public: CKey(const uint256& pKey) : fSet(false) { - SetPrivateKey(pKey); + SetPrivateKeyU(pKey); } bool IsNull() const @@ -210,11 +210,13 @@ public: uint256 GetPrivateKeyU(void) { // WRITEME + throw 0; } void SetPrivateKeyU(const uint256& key) { // WRITEME + throw 0; } BIGNUM* GetSecretBN() const