mirror of
https://github.com/sparrowwallet/drongo.git
synced 2025-11-05 11:56:38 +00:00
Fix testnet default path
This commit is contained in:
parent
d802a58fe0
commit
b9561837db
1 changed files with 1 additions and 1 deletions
|
|
@ -989,7 +989,7 @@ public enum ScriptType {
|
|||
}
|
||||
|
||||
public String getDefaultDerivationPath() {
|
||||
return Network.get() != Network.MAINNET ? defaultDerivationPath.replace("/0'/0'", "/1'/0'") : defaultDerivationPath;
|
||||
return Network.get() != Network.MAINNET ? defaultDerivationPath.replace("/17'/0'", "/1'/0'") : defaultDerivationPath;
|
||||
}
|
||||
|
||||
public List<ChildNumber> getDefaultDerivation() {
|
||||
|
|
|
|||
Loading…
Reference in a new issue