mirror of
https://github.com/sparrowwallet/drongo.git
synced 2024-11-02 18:26:43 +00:00
add minimal wallet copy functionality
This commit is contained in:
parent
692f23e026
commit
ca98d4d9b6
1 changed files with 18 additions and 12 deletions
|
@ -1802,12 +1802,16 @@ public class Wallet extends Persistable implements Comparable<Wallet> {
|
|||
}
|
||||
|
||||
public Wallet copy() {
|
||||
return copy(true);
|
||||
}
|
||||
|
||||
public Wallet copy(boolean includeHistory) {
|
||||
Wallet copy = new Wallet(name);
|
||||
copy.setId(getId());
|
||||
copy.setLabel(label);
|
||||
copy.setMasterWallet(masterWallet);
|
||||
for(Wallet childWallet : childWallets) {
|
||||
Wallet copyChildWallet = childWallet.copy();
|
||||
Wallet copyChildWallet = childWallet.copy(includeHistory);
|
||||
copyChildWallet.setMasterWallet(copy);
|
||||
copy.childWallets.add(copyChildWallet);
|
||||
}
|
||||
|
@ -1817,6 +1821,7 @@ public class Wallet extends Persistable implements Comparable<Wallet> {
|
|||
for(Keystore keystore : keystores) {
|
||||
copy.getKeystores().add(keystore.copy());
|
||||
}
|
||||
if(includeHistory) {
|
||||
for(WalletNode node : purposeNodes) {
|
||||
copy.purposeNodes.add(node.copy(copy));
|
||||
}
|
||||
|
@ -1826,11 +1831,12 @@ public class Wallet extends Persistable implements Comparable<Wallet> {
|
|||
for(String entry : detachedLabels.keySet()) {
|
||||
copy.detachedLabels.put(entry, detachedLabels.get(entry));
|
||||
}
|
||||
copy.setWalletConfig(walletConfig == null ? null : walletConfig.copy());
|
||||
copy.setMixConfig(mixConfig == null ? null : mixConfig.copy());
|
||||
for(Sha256Hash hash : utxoMixes.keySet()) {
|
||||
copy.utxoMixes.put(hash, utxoMixes.get(hash));
|
||||
}
|
||||
}
|
||||
copy.setWalletConfig(walletConfig == null ? null : walletConfig.copy());
|
||||
copy.setMixConfig(mixConfig == null ? null : mixConfig.copy());
|
||||
copy.setStoredBlockHeight(getStoredBlockHeight());
|
||||
copy.gapLimit = gapLimit;
|
||||
copy.watchLast = watchLast;
|
||||
|
|
Loading…
Reference in a new issue