Skip to content

Commit

Permalink
Fixed wrong function call
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelWuensch committed Dec 17, 2023
1 parent 0cb2001 commit 26e465a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ public void updateHistoryDisplayList() {
for (Transaction t : Wallet.getInstance().mOnChainTransactionList) {
OnChainTransactionItem onChainTransactionItem = new OnChainTransactionItem(t);

if (Wallet.getInstance().isTransactionInternal(t)) {
if (Wallet.getInstance().isChannelTransaction(t)) {
internalTransactions.add(onChainTransactionItem);
} else {
if (t.getAmount() != 0) {
Expand Down

0 comments on commit 26e465a

Please sign in to comment.