Handle offer removal on disconnects

This commit is contained in:
Manfred Karrer 2016-02-18 00:42:22 +01:00
parent cb236f65fb
commit 58bb1868a3
29 changed files with 532 additions and 385 deletions

View file

@ -10,7 +10,7 @@ public class ByteArray implements Serializable {
// That object is sent over the wire, so we need to take care of version compatibility.
private static final long serialVersionUID = Version.P2P_NETWORK_VERSION;
private final byte[] bytes;
public final byte[] bytes;
public ByteArray(byte[] bytes) {
this.bytes = bytes;