Skip to content

Commit

Permalink
fixup! fix: correctly set handle owner when handle is upgraded to cip68
Browse files Browse the repository at this point in the history
  • Loading branch information
AngelCastilloB committed Sep 12, 2024
1 parent 3634303 commit bf4d3aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/projection/src/operators/Mappers/withHandles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,8 @@ export const withHandles =
const handleMap = evt.block.body.reduce(
(handles, { body: { outputs, mint } }) => ({
...handles,
...getOutputHandles(outputs, policyIds, evt.cip67, logger),
...getBurnedHandles(mint, policyIds, evt.cip67, logger)
...getBurnedHandles(mint, policyIds, evt.cip67, logger),
...getOutputHandles(outputs, policyIds, evt.cip67, logger)
}),
{} as Record<string, HandleOwnership>
);
Expand Down

0 comments on commit bf4d3aa

Please sign in to comment.