Fix compile error.

This commit is contained in:
Mike Hearn 2011-08-05 14:06:54 +00:00
parent a598132514
commit 0b3c97239a

View File

@ -37,7 +37,11 @@ public class FetchBlock {
peer.connect();
new Thread(new Runnable() {
public void run() {
peer.run();
try {
peer.run();
} catch (PeerException e) {
throw new RuntimeException(e);
}
}
}).start();