if allow unconfirmed, include mempool outputs in balance

This commit is contained in:
Craig Raw 2021-04-20 11:55:43 +02:00
parent 164742387f
commit f2f15208bf

View file

@ -7,6 +7,7 @@ import com.sparrowwallet.drongo.wallet.Wallet;
import com.sparrowwallet.drongo.wallet.WalletNode;
import com.sparrowwallet.sparrow.EventManager;
import com.sparrowwallet.sparrow.event.NewWalletTransactionsEvent;
import com.sparrowwallet.sparrow.io.Config;
import javafx.beans.property.LongProperty;
import javafx.beans.property.LongPropertyBase;
import org.slf4j.Logger;
@ -37,7 +38,7 @@ public class WalletTransactionsEntry extends Entry {
for(Entry entry : getChildren()) {
TransactionEntry transactionEntry = (TransactionEntry)entry;
if(transactionEntry.getConfirmations() != 0 || transactionEntry.getValue() < 0) {
if(transactionEntry.getConfirmations() != 0 || Config.get().isIncludeMempoolChange()) {
balance += entry.getValue();
}