mirror of
https://github.com/sparrowwallet/hummingbird.git
synced 2024-11-02 18:46:45 +00:00
fix: rolled back types to keep consistency with previous code.
This commit is contained in:
parent
0738702e20
commit
de6794e9b2
1 changed files with 4 additions and 4 deletions
|
@ -73,9 +73,9 @@ public class CryptoCoinInfo extends RegistryItem {
|
||||||
public enum Type {
|
public enum Type {
|
||||||
BITCOIN(0), ETHEREUM(60);
|
BITCOIN(0), ETHEREUM(60);
|
||||||
|
|
||||||
int typeValue;
|
Integer typeValue;
|
||||||
|
|
||||||
Type(int typeValue) {
|
Type(Integer typeValue) {
|
||||||
this.typeValue = typeValue;
|
this.typeValue = typeValue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -93,9 +93,9 @@ public class CryptoCoinInfo extends RegistryItem {
|
||||||
public enum Network {
|
public enum Network {
|
||||||
MAINNET(0), TESTNET(1), GOERLI(4);
|
MAINNET(0), TESTNET(1), GOERLI(4);
|
||||||
|
|
||||||
int networkValue;
|
Integer networkValue;
|
||||||
|
|
||||||
Network(int networkValue) {
|
Network(Integer networkValue) {
|
||||||
this.networkValue = networkValue;
|
this.networkValue = networkValue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue