UTXOProvider: comment fix

This commit is contained in:
Mike Hearn
2015-06-09 12:14:35 +02:00
parent 82ba54db13
commit fc22d9cbc6

View File

@@ -25,12 +25,12 @@ import java.util.List;
*/
public interface UTXOProvider {
// TODO currently the access to outputs is by address. Change to ECKey
/**
* // TODO currently the access to outputs is by address. Change to ECKey
* Get the list of {@link UTXO}'s for a given address.
* @param addresses List of address.
* @return The list of transaction outputs.
* @throws UTXOProvider If there is an error.
* @throws UTXOProviderException If there is an error.
*/
List<UTXO> getOpenTransactionOutputs(List<Address> addresses) throws UTXOProviderException;