diff --git a/peer.cpp b/peer.cpp index 14bf790e1..5a440a88f 100644 --- a/peer.cpp +++ b/peer.cpp @@ -46,7 +46,7 @@ int peerTest(int argc, char** argv) } BlockChain ch("/tmp"); - PeerServer pn(ch, 0, listenPort); + PeerServer pn("Test", ch, 0, listenPort); if (!remoteHost.empty()) pn.connect(remoteHost, remotePort); @@ -54,7 +54,7 @@ int peerTest(int argc, char** argv) for (int i = 0; ; ++i) { usleep(100000); - pn.process(); + pn.process(ch); if (!(i % 10)) pn.pingAll(); } diff --git a/state.cpp b/state.cpp index d4201c570..ed9d05aab 100644 --- a/state.cpp +++ b/state.cpp @@ -47,7 +47,7 @@ int stateTest() // Mine to get some ether! s.commitToMine(bc); - while (s.mine(100).empty()) {} + while (s.mine(100).completed()) {} bc.attemptImport(s.blockData(), stateDB); cout << bc; @@ -74,7 +74,7 @@ int stateTest() // Mine to get some ether and set in stone. s.commitToMine(bc); - while (s.mine(100).empty()) {} + while (s.mine(100).completed()) {} bc.attemptImport(s.blockData(), stateDB); cout << bc;