mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-07-27 00:45:23 -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
|
@ -38,7 +38,15 @@ public class Version {
|
|||
public static final long PROTOCOL_VERSION = 1;
|
||||
|
||||
// The version for the bitcoin network (Mainnet = 0, TestNet = 1, Regtest = 2)
|
||||
public static int NETWORK_ID;
|
||||
private static int NETWORK_ID;
|
||||
|
||||
public static int getNetworkId() {
|
||||
return NETWORK_ID;
|
||||
}
|
||||
|
||||
public static void setNetworkId(int networkId) {
|
||||
NETWORK_ID = networkId;
|
||||
}
|
||||
|
||||
public static void printVersion() {
|
||||
log.info("Version{" +
|
||||
|
@ -50,4 +58,5 @@ public class Version {
|
|||
'}');
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue