mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-12-23 20:36:44 +00:00
if allow unconfirmed, include mempool outputs in balance
This commit is contained in:
parent
164742387f
commit
f2f15208bf
1 changed files with 2 additions and 1 deletions
|
@ -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…
Reference in a new issue