mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2025-02-24 06:47:54 +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.
|
* to their varying policies.
|
||||||
*/
|
*/
|
||||||
public class CoinSelection {
|
public class CoinSelection {
|
||||||
public Coin valueGathered;
|
public final Coin valueGathered;
|
||||||
public Collection<TransactionOutput> gathered;
|
public final Collection<TransactionOutput> gathered;
|
||||||
|
|
||||||
public CoinSelection(Coin valueGathered, Collection<TransactionOutput> gathered) {
|
public CoinSelection(Coin valueGathered, Collection<TransactionOutput> gathered) {
|
||||||
this.valueGathered = valueGathered;
|
this.valueGathered = valueGathered;
|
||||||
|
|
Loading…
Add table
Reference in a new issue