Skip to content
This repository has been archived by the owner on Sep 16, 2024. It is now read-only.

Commit

Permalink
fix(gql): fix parsing of generating sort key
Browse files Browse the repository at this point in the history
  • Loading branch information
dtfiedler committed Nov 27, 2023
1 parent c1c06e7 commit 1123dcf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/api/graphql.ts
Original file line number Diff line number Diff line change
Expand Up @@ -190,9 +190,9 @@ export async function getWalletInteractionsForContract(
? JSON.parse(inputTag.value)
: undefined;
const sortKey = await interactionSorter.createSortKey(
e.block.id,
e.node.block.id,
e.node.id,
e.block.height,
e.node.block.height,
);
interactions.set(e.node.id, {
height: e.node.block.height,
Expand Down

0 comments on commit 1123dcf

Please sign in to comment.