mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-07-31 02:39:08 -04:00
use bitcoin as currency in lowercase
This commit is contained in:
parent
49b5ac5403
commit
be4a25abb0
40 changed files with 109 additions and 114 deletions
|
@ -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() {
|
||||
|
|
|
@ -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) {
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue