Fix for #246. Removed sync() to prevent race condition within dropped() and . Raised maxblocks to 64.

This commit is contained in:
subtly 2014-07-21 02:29:49 -06:00
parent f2524f5578
commit 5da1e452ed

View File

@ -57,7 +57,7 @@ int peerTest(int argc, char** argv)
for (int i = 0; ; ++i) for (int i = 0; ; ++i)
{ {
this_thread::sleep_for(chrono::milliseconds(100)); this_thread::sleep_for(chrono::milliseconds(100));
pn.sync(); // pn.sync();
if (!(i % 10)) if (!(i % 10))
pn.pingAll(); pn.pingAll();
} }