Skip to content

Commit

Permalink
fix: endorsement chain merge holder (TradeTrust#763)
Browse files Browse the repository at this point in the history
  • Loading branch information
osslgtm authored Jun 7, 2023
1 parent 1697c5e commit 09008f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/hooks/useEndorsementChain/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const getHolderOwner = (events: TransferBaseEvent[]): { owner: string; ho
let holder = "";
for (const event of events) {
owner = event.owner || owner;
holder = event.owner || holder;
holder = event.holder || holder;
}
return { owner, holder };
};
Expand Down

0 comments on commit 09008f2

Please sign in to comment.