mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2025-02-23 14:40:40 +01:00
CoinSelection: make fields final (minor breaking)
This commit is contained in:
parent
9423d02b4d
commit
2b82c27456
1 changed files with 2 additions and 2 deletions
|
@ -30,8 +30,8 @@ import java.util.List;
|
|||
* to their varying policies.
|
||||
*/
|
||||
public class CoinSelection {
|
||||
public Coin valueGathered;
|
||||
public Collection<TransactionOutput> gathered;
|
||||
public final Coin valueGathered;
|
||||
public final Collection<TransactionOutput> gathered;
|
||||
|
||||
public CoinSelection(Coin valueGathered, Collection<TransactionOutput> gathered) {
|
||||
this.valueGathered = valueGathered;
|
||||
|
|
Loading…
Add table
Reference in a new issue