diff --git a/core/pom.xml b/core/pom.xml
index ee9ac227244..c149d3c9713 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -22,7 +22,7 @@
A VersionMessage holds information exchanged during connection setup with another peer. Most of the fields are not - * particularly interesting. The subVer field, since BIP 14, acts as a User-Agent string would. You can and should + * particularly interesting. The subVer field, since BIP 14, acts as a User-Agent string would. You can and should * append to or change the subVer for your own software so other implementations can identify it, and you can look at * the subVer field received from other nodes to see what they are running.
* *After creating yourself a VersionMessage, you can pass it to {@link PeerGroup#setVersionMessage(VersionMessage)} * to ensure it will be used for each new connection.
- * + * *Instances of this class are not safe for use by multiple threads.
*/ public class VersionMessage extends Message { @@ -80,7 +80,7 @@ public class VersionMessage extends Message { public boolean relayTxesBeforeFilter; /** The version of this library release, as a string. */ - public static final String BITCOINJ_VERSION = "0.14.7.bisq.1-SNAPSHOT"; + public static final String BITCOINJ_VERSION = "0.14.7.bisq.2-SNAPSHOT"; /** The value that is prepended to the subVer field of this application. */ public static final String LIBRARY_SUBVER = "/bitcoinj:" + BITCOINJ_VERSION + "/"; @@ -91,7 +91,7 @@ public VersionMessage(NetworkParameters params, byte[] payload) throws ProtocolE // It doesn't really make sense to ever lazily parse a version message or to retain the backing bytes. // If you're receiving this on the wire you need to check the protocol version and it will never need to be sent // back down the wire. - + public VersionMessage(NetworkParameters params, int newBestHeight) { super(params); clientVersion = params.getProtocolVersionNum(NetworkParameters.ProtocolVersion.CURRENT); @@ -170,7 +170,7 @@ public void bitcoinSerializeToStream(OutputStream buf) throws IOException { throw new RuntimeException(e); // Can't happen. } // Next up is the "local host nonce", this is to detect the case of connecting - // back to yourself. We don't care about this as we won't be accepting inbound + // back to yourself. We don't care about this as we won't be accepting inbound // connections. Utils.uint32ToByteStreamLE(0, buf); Utils.uint32ToByteStreamLE(0, buf); diff --git a/examples/pom.xml b/examples/pom.xml index 71307c29791..d55b29b46a3 100644 --- a/examples/pom.xml +++ b/examples/pom.xml @@ -21,7 +21,7 @@