diff --git a/newcoin.vcxproj b/newcoin.vcxproj
index 975e16da8e..ea76caa586 100644
--- a/newcoin.vcxproj
+++ b/newcoin.vcxproj
@@ -72,7 +72,7 @@
MaxSpeed
true
true
- BOOST_TEST_NO_MAIN;_CRT_SECURE_NO_WARNINGS;_WIN32_WINNT=0x0501;WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)
+ BOOST_TEST_ALTERNATIVE_INIT_API;BOOST_TEST_NO_MAIN;_CRT_SECURE_NO_WARNINGS;_WIN32_WINNT=0x0501;WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)
..\OpenSSL\include;..\boost_1_47_0;..\protobuf-2.4.1\src
diff --git a/src/Amount.cpp b/src/Amount.cpp
index cd4cd3bc5a..88d40b912a 100644
--- a/src/Amount.cpp
+++ b/src/Amount.cpp
@@ -100,7 +100,7 @@ bool STAmount::setValue(const std::string& sAmount, const std::string& sCurrency
if (bInteger)
{
- uValue = sAmount.empty() ? 0 : boost::lexical_cast(sAmount);
+ uValue = sAmount.empty() ? 0 : boost::lexical_cast(sAmount);
iOffset = 0;
}
else
diff --git a/src/Peer.cpp b/src/Peer.cpp
index 056c4b57bd..30cf075bd9 100644
--- a/src/Peer.cpp
+++ b/src/Peer.cpp
@@ -731,7 +731,7 @@ void Peer::recvGetPeers(newcoin::TMGetPeers& packet)
addr->set_ipv4(inet_addr(strIP.c_str()));
addr->set_ipv4port(port);
- std::cout << "Teaching about: " << strIP << std::endl;
+ //std::cout << "Teaching about: " << strIP << std::endl;
}
@@ -757,7 +757,7 @@ void Peer::recvPeers(newcoin::TMPeers& packet)
// if (strIP != "127.0.0.1")
{
- std::cout << "Learning about: " << strIP << std::endl;
+ //std::cout << "Learning about: " << strIP << std::endl;
theApp->getConnectionPool().savePeer(strIP, port, 'T');
}