mirror of
https://github.com/sparrowwallet/drongo.git
synced 2025-11-05 11:56:38 +00:00
chore: ignore java env files
This commit is contained in:
parent
131478dcd0
commit
5ba000a4b3
4 changed files with 9 additions and 4 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -6,3 +6,4 @@ build
|
|||
out
|
||||
*.log
|
||||
.DS_Store
|
||||
.java-version
|
||||
|
|
@ -59,7 +59,7 @@ dependencies {
|
|||
exclude group: 'org.hamcrest', module: 'hamcrest-core'
|
||||
}
|
||||
testImplementation group: 'org.hamcrest', name: 'hamcrest-core', version: '2.2'
|
||||
implementation 'de.sfuhrm:saphir-hash-core:3.0.5'
|
||||
implementation 'de.sfuhrm:saphir-hash-core:3.0.10'
|
||||
}
|
||||
|
||||
processResources {
|
||||
|
|
@ -117,4 +117,7 @@ extraJavaModuleInfo {
|
|||
module('junit-4.12.jar', 'junit', '4.12') {
|
||||
exports('org.junit')
|
||||
}
|
||||
module('saphir-hash-core-3.0.10.jar', 'de.sfuhrm', '3.0.10') {
|
||||
exports('de.sfuhrm')
|
||||
}
|
||||
}
|
||||
|
|
@ -5,7 +5,7 @@ import java.util.Locale;
|
|||
public enum Network {
|
||||
MAINNET("mainnet", 36, "F", 5, "3", "grs", ExtendedKey.Header.xprv, ExtendedKey.Header.xpub, 128, 1331),
|
||||
TESTNET("testnet", 111, "mn", 196, "2", "tgrs", ExtendedKey.Header.tprv, ExtendedKey.Header.tpub, 239, 17777),
|
||||
REGTEST("regtest", 111, "mn", 239, "2", "grsrt", ExtendedKey.Header.tprv, ExtendedKey.Header.tpub, 239, 18888);
|
||||
REGTEST("regtest", 111, "mn", 239, "2", "grsrt", ExtendedKey.Header.tprv, ExtendedKey.Header.tpub, 239, 18888),
|
||||
SIGNET("signet", 111, "mn", 196, "2", "tgrs", ExtendedKey.Header.tprv, ExtendedKey.Header.tpub, 239, 31331);
|
||||
|
||||
public static final String BLOCK_HEIGHT_PROPERTY = "com.sparrowwallet.blockHeight";
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@ open module com.sparrowwallet.drongo {
|
|||
requires logback.classic;
|
||||
requires json.simple;
|
||||
requires jeromq;
|
||||
requires de.sfuhrm;
|
||||
exports com.sparrowwallet.drongo;
|
||||
exports com.sparrowwallet.drongo.psbt;
|
||||
exports com.sparrowwallet.drongo.protocol;
|
||||
|
|
|
|||
Loading…
Reference in a new issue