Skip to content

Commit

Permalink
Remove check to not include ordinal address as recipient address (#211)
Browse files Browse the repository at this point in the history
This reverts commit d6ffb5a.
  • Loading branch information
teebszet committed Aug 25, 2023
1 parent b395691 commit ec33e84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/helper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export function parseOrdinalsBtcTransactions(

const outputAddresses: string[] = [];
responseTx.vout.forEach((output) => {
if (output.scriptpubkey_address && output.scriptpubkey_address !== ordinalsAddress) {
if (output.scriptpubkey_address) {
outputAddresses.push(output.scriptpubkey_address);
}
});
Expand Down

0 comments on commit ec33e84

Please sign in to comment.