aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--peer.cpp4
-rw-r--r--state.cpp4
2 files changed, 4 insertions, 4 deletions
diff --git a/peer.cpp b/peer.cpp
index 14bf790e..5a440a88 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 d4201c57..ed9d05aa 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;