Skip to content

Commit

Permalink
chore: update to dashj 20.0.0-SNAPSHOT to support Core v20 (#1204)
Browse files Browse the repository at this point in the history
* chore: upgrade to dashj 20.0.0-SNAPSHOT

* fix: use Ouzo for the devnet flavor
  • Loading branch information
HashEngineering authored Sep 26, 2023
1 parent 4972838 commit b2d26d5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ buildscript {
kotlin_version = '1.8.22'
coroutinesVersion = '1.6.4'
ok_http_version = '4.9.1'
dashjVersion = '19.0.6'
dashjVersion = '20.0.0-SNAPSHOT'
hiltVersion = '2.45'
hiltWorkVersion = '1.0.0'
workRuntimeVersion='2.7.1'
Expand Down
4 changes: 2 additions & 2 deletions wallet/src/de/schildbach/wallet/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
import org.bitcoinj.core.NetworkParameters;
import org.bitcoinj.crypto.ChildNumber;
import org.bitcoinj.params.MainNetParams;
import org.bitcoinj.params.ScrewDriverDevNetParams;
import org.bitcoinj.params.OuzoDevNetParams;
import org.bitcoinj.params.TestNet3Params;
import org.bitcoinj.utils.MonetaryFormat;
import org.bitcoinj.wallet.DeterministicKeyChain;
Expand Down Expand Up @@ -86,7 +86,7 @@ public final class Constants {
case "devnet": {
// Devnet
BIP44_PATH = DeterministicKeyChain.BIP44_ACCOUNT_ZERO_PATH_TESTNET;
NETWORK_PARAMETERS = ScrewDriverDevNetParams.get();
NETWORK_PARAMETERS = OuzoDevNetParams.get();
// TODO: remove this next line when Platform Supports Core 0.18
DNS_SEED = NETWORK_PARAMETERS.getDnsSeeds();
IS_PROD_BUILD = false;
Expand Down

0 comments on commit b2d26d5

Please sign in to comment.