From 7403820e88a55650cd473d9331f8a0cea12d7e42 Mon Sep 17 00:00:00 2001 From: Arthur Britto Date: Mon, 14 May 2012 22:17:02 -0700 Subject: [PATCH] Comment out verbose debugging. --- src/NewcoinAddress.cpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/NewcoinAddress.cpp b/src/NewcoinAddress.cpp index b472d374a..1f2745639 100644 --- a/src/NewcoinAddress.cpp +++ b/src/NewcoinAddress.cpp @@ -631,16 +631,17 @@ void NewcoinAddress::setFamilySeedGeneric(const std::string& strText) { if (setFamilySeed(strText)) { - std::cerr << "Recognized seed." << std::endl; + // std::cerr << "Recognized seed." << std::endl; + nothing(); } else if (1 == setFamilySeed1751(strText)) { - std::cerr << "Recognized 1751 seed." << std::endl; + // std::cerr << "Recognized 1751 seed." << std::endl; + nothing(); } else { - std::cerr << "Creating seed from pass phrase." << std::endl; - + // std::cerr << "Creating seed from pass phrase." << std::endl; setFamilySeed(CKey::PassPhraseToKey(strText)); } }