Comment out verbose debugging.

This commit is contained in:
Arthur Britto
2012-05-14 22:17:02 -07:00
parent 959fb22392
commit 7403820e88

View File

@@ -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));
}
}