3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-02-13 10:45:51 +00:00

Wallet: make getUnspents() public.

This commit is contained in:
Mike Hearn 2015-08-31 15:12:02 +02:00
parent 6b4123cd9f
commit 864f2529e8

View File

@ -2781,7 +2781,7 @@ public class Wallet extends BaseTaggableObject
}
/** Returns a copy of the internal unspent outputs list */
List<TransactionOutput> getUnspents() {
public List<TransactionOutput> getUnspents() {
lock.lock();
try {
return new ArrayList<TransactionOutput>(myUnspents);