GUI & network stuff.

This commit is contained in:
Gav Wood 2014-01-22 18:18:12 -05:00
parent 803e992070
commit 7c9a1238b7
2 changed files with 4 additions and 4 deletions

View File

@ -46,7 +46,7 @@ int peerTest(int argc, char** argv)
} }
BlockChain ch("/tmp"); BlockChain ch("/tmp");
PeerServer pn(ch, 0, listenPort); PeerServer pn("Test", ch, 0, listenPort);
if (!remoteHost.empty()) if (!remoteHost.empty())
pn.connect(remoteHost, remotePort); pn.connect(remoteHost, remotePort);
@ -54,7 +54,7 @@ int peerTest(int argc, char** argv)
for (int i = 0; ; ++i) for (int i = 0; ; ++i)
{ {
usleep(100000); usleep(100000);
pn.process(); pn.process(ch);
if (!(i % 10)) if (!(i % 10))
pn.pingAll(); pn.pingAll();
} }

View File

@ -47,7 +47,7 @@ int stateTest()
// Mine to get some ether! // Mine to get some ether!
s.commitToMine(bc); s.commitToMine(bc);
while (s.mine(100).empty()) {} while (s.mine(100).completed()) {}
bc.attemptImport(s.blockData(), stateDB); bc.attemptImport(s.blockData(), stateDB);
cout << bc; cout << bc;
@ -74,7 +74,7 @@ int stateTest()
// Mine to get some ether and set in stone. // Mine to get some ether and set in stone.
s.commitToMine(bc); s.commitToMine(bc);
while (s.mine(100).empty()) {} while (s.mine(100).completed()) {}
bc.attemptImport(s.blockData(), stateDB); bc.attemptImport(s.blockData(), stateDB);
cout << bc; cout << bc;