copy stored height

This commit is contained in:
Craig Raw 2020-08-30 11:14:48 +02:00
parent 6da818606a
commit 55717c31bf

View file

@ -840,6 +840,7 @@ public class Wallet {
for(Sha256Hash hash : transactions.keySet()) { for(Sha256Hash hash : transactions.keySet()) {
copy.transactions.put(hash, transactions.get(hash)); copy.transactions.put(hash, transactions.get(hash));
} }
copy.setStoredBlockHeight(getStoredBlockHeight());
return copy; return copy;
} }