use bitcoin as currency in lowercase

This commit is contained in:
Manfred Karrer 2016-01-18 13:04:15 +01:00
parent 49b5ac5403
commit be4a25abb0
40 changed files with 109 additions and 114 deletions

View file

@ -21,7 +21,7 @@ import io.bitsquare.app.Version;
import io.bitsquare.p2p.messaging.MailboxMessage;
public abstract class DisputeMessage implements MailboxMessage {
private final int networkId = Version.NETWORK_ID;
private final int networkId = Version.getNetworkId();
@Override
public int networkId() {

View file

@ -27,7 +27,7 @@ public abstract class OfferMessage implements MailMessage {
// That object is sent over the wire, so we need to take care of version compatibility.
private static final long serialVersionUID = Version.NETWORK_PROTOCOL_VERSION;
private final int networkId = Version.NETWORK_ID;
private final int networkId = Version.getNetworkId();
public final String offerId;
protected OfferMessage(String offerId) {

View file

@ -27,7 +27,7 @@ public abstract class TradeMessage implements MailMessage {
// That object is sent over the wire, so we need to take care of version compatibility.
private static final long serialVersionUID = Version.NETWORK_PROTOCOL_VERSION;
private final int networkId = Version.NETWORK_ID;
private final int networkId = Version.getNetworkId();
public final String tradeId;
@Override