Remove unneeded BtcWalletService field

This commit is contained in:
Manfred Karrer 2018-09-28 13:05:06 -05:00
parent 2b5731ce7f
commit d7be7f48f2
No known key found for this signature in database
GPG Key ID: 401250966A6B2C46

View File

@ -43,7 +43,6 @@ import static com.google.common.base.Preconditions.checkNotNull;
@EqualsAndHashCode(callSuper = true)
@Data
class BsqTxListItem extends TxConfidenceListItem {
private final BtcWalletService btcWalletService;
private final DaoFacade daoFacade;
private final BsqFormatter bsqFormatter;
private final Date date;
@ -64,7 +63,6 @@ class BsqTxListItem extends TxConfidenceListItem {
BsqFormatter bsqFormatter) {
super(transaction, bsqWalletService);
this.btcWalletService = btcWalletService;
this.daoFacade = daoFacade;
this.isBurnedBsqTx = daoFacade.hasTxBurntFee(transaction.getHashAsString());
this.date = date;