From 16a58a86442ad587449f321c0dbab08cc028c2bd Mon Sep 17 00:00:00 2001 From: Cory Fields Date: Fri, 27 Feb 2015 16:44:26 -0500 Subject: keys: remove libsecp256k1 verification until it's actually supported This was added a while ago for testing purposes, but was never intended to be used. Remove it until upstream libsecp256k1 decides that verification is stable/ready. --- src/key.cpp | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/key.cpp') diff --git a/src/key.cpp b/src/key.cpp index d8319db1a3..64c9bc7119 100644 --- a/src/key.cpp +++ b/src/key.cpp @@ -208,11 +208,9 @@ void CExtKey::Decode(const unsigned char code[74]) { } bool ECC_InitSanityCheck() { -#if !defined(USE_SECP256K1) if (!CECKey::SanityCheck()) { return false; } -#endif CKey key; key.MakeNewKey(true); CPubKey pubkey = key.GetPubKey(); -- cgit v1.2.3