Skip to content

Commit

Permalink
[PLA-1493] Fixes issue with ClaimCollections (#742)
Browse files Browse the repository at this point in the history
  • Loading branch information
leonardocustodio authored Dec 9, 2023
1 parent 88d7da3 commit 23c8c87
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/processor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,9 @@ processor.run(
} else if (item.kind === 'call') {
if (
item.call.parent != null ||
(!['Claims.claim', 'MultiTokens.claim_tokens'].includes(item.call.name) &&
(!['Claims.claim', 'MultiTokens.claim_tokens', 'MultiTokens.claim_collections'].includes(
item.call.name
) &&
item.extrinsic.signature?.address == null)
) {
// eslint-disable-next-line no-continue
Expand Down

0 comments on commit 23c8c87

Please sign in to comment.