Skip to content

Commit

Permalink
fix: property check
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexStefan committed Dec 13, 2024
1 parent 49022df commit 2de5360
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/lib/web3js-common/src/stakeAccount.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ function isAccountInfoParsedData(
return (
data.data &&
!(data.data instanceof Buffer) &&
data.data.parsed !== undefined
('parsed' in data.data)
)
}

Expand Down

0 comments on commit 2de5360

Please sign in to comment.