Browse Source

if allow unconfirmed, include mempool outputs in balance

terminal
Craig Raw 4 years ago
parent
commit
f2f15208bf
  1. 3
      src/main/java/com/sparrowwallet/sparrow/wallet/WalletTransactionsEntry.java

3
src/main/java/com/sparrowwallet/sparrow/wallet/WalletTransactionsEntry.java

@ -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();
}

Loading…
Cancel
Save