From: alex Date: Thu, 7 Mar 2013 21:11:35 +0000 (+0400) Subject: Use 33 byte compressed keys X-Git-Tag: v0.4.0-unstable~24 X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=commitdiff_plain;h=2fee5e14846af39ce7f19d39feb7cfd3f2e88c7c Use 33 byte compressed keys --- diff --git a/src/bitcoinrpc.cpp b/src/bitcoinrpc.cpp index 01e4ab0..6dfb19c 100644 --- a/src/bitcoinrpc.cpp +++ b/src/bitcoinrpc.cpp @@ -2353,7 +2353,7 @@ Value getnewpubkey(const Array& params, bool fHelp) pwalletMain->TopUpKeyPool(); // Generate a new key that is added to wallet - std::vector newKey = pwalletMain->GenerateNewKey(false); + std::vector newKey = pwalletMain->GenerateNewKey(true); if(!newKey.size()) throw JSONRPCError(-12, "Error: Unable to create key"); diff --git a/src/makefile.unix b/src/makefile.unix index 8078de0..684585f 100644 --- a/src/makefile.unix +++ b/src/makefile.unix @@ -4,7 +4,6 @@ # file license.txt or http://www.opensource.org/licenses/mit-license.php. USE_UPNP:=0 -STATIC:=1 DEFS=-DBOOST_SPIRIT_THREADSAFE