Skip to content

Commit

Permalink
Fixed vesting owner lookup.
Browse files Browse the repository at this point in the history
  • Loading branch information
NoahSaso committed Nov 20, 2023
1 parent 6076049 commit 4e268ec
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/data/formulas/wallet/vesting.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ export const ownerOf: WalletFormula<string[]> = {
await Promise.all([
getTransformationMatches(
undefined,
`owner:${walletAddress}`,
undefined,
'owner',
walletAddress,
cwVestingCodeIds
),
...cw1WhitelistContracts.map(({ contractAddress }) =>
getTransformationMatches(
undefined,
`owner:${contractAddress}`,
undefined,
'owner',
contractAddress,
cwVestingCodeIds
)
),
Expand Down

0 comments on commit 4e268ec

Please sign in to comment.