3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-02-12 18:25:51 +00:00

WalletFiles: Getter for wallet that is managed.

This commit is contained in:
Andreas Schildbach 2018-03-30 20:58:08 +02:00
parent c9a36647a9
commit 37525e6eb7

View File

@ -102,6 +102,11 @@ public class WalletFiles {
};
}
/** Get the {@link Wallet} this {@link WalletFiles} is managing. */
public Wallet getWallet() {
return wallet;
}
/**
* The given listener will be called on the autosave thread before and after the wallet is saved to disk.
*/