Skip to content

Commit

Permalink
chore: flip condition
Browse files Browse the repository at this point in the history
  • Loading branch information
slavastartsev committed Nov 13, 2024
1 parent 782f89c commit 52633e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/src/wallet/utxo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ export async function createBitcoinPsbt(
publicKey
);
// to support taproot addresses we want to exclude outputs which contain inscriptions
if (!outpointsSet.has(OutPoint.toString(utxo))) possibleInputs.push(input);
if (outpointsSet.has(OutPoint.toString(utxo))) possibleInputs.push(input);
})
);

Expand Down

0 comments on commit 52633e8

Please sign in to comment.