Skip to content

Commit bf4d3aa

Browse files
fixup! fix: correctly set handle owner when handle is upgraded to cip68
1 parent 3634303 commit bf4d3aa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/projection/src/operators/Mappers/withHandles.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,8 +160,8 @@ export const withHandles =
160160
const handleMap = evt.block.body.reduce(
161161
(handles, { body: { outputs, mint } }) => ({
162162
...handles,
163-
...getOutputHandles(outputs, policyIds, evt.cip67, logger),
164-
...getBurnedHandles(mint, policyIds, evt.cip67, logger)
163+
...getBurnedHandles(mint, policyIds, evt.cip67, logger),
164+
...getOutputHandles(outputs, policyIds, evt.cip67, logger)
165165
}),
166166
{} as Record<string, HandleOwnership>
167167
);

0 commit comments

Comments
 (0)