From: CryptoManiac Date: Sun, 21 Feb 2016 23:37:42 +0000 (+0300) Subject: Allow generation of keypairs for mainNet clients since 20 March, 2016 X-Git-Tag: nvc-v0.5.6~53 X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=commitdiff_plain;h=f728b0b90162f153b3094ce034f4fd3bccfea6a1 Allow generation of keypairs for mainNet clients since 20 March, 2016 --- diff --git a/src/rpcwallet.cpp b/src/rpcwallet.cpp index 1353149..5ebff9c 100644 --- a/src/rpcwallet.cpp +++ b/src/rpcwallet.cpp @@ -1896,7 +1896,7 @@ Value newmalleablekey(const Array& params, bool fHelp) "newmalleablekey\n" "Make a malleable public/private key pair.\n"); - if (!fTestNet) + if (!fTestNet && GetTime() < SMALLDATA_SWITCH_TIME) throw runtime_error("This feature has been disabled for mainNet clients"); CMalleableKeyView keyView = pwalletMain->GenerateNewMalleableKey();