Skip to content

Commit

Permalink
chore: linting
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexStefan committed Dec 13, 2024
1 parent 2de5360 commit 661ea4c
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions packages/lib/web3js-common/src/stakeAccount.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,7 @@ function isAccountInfoParsedData(
if (data === null) {
return false
}
return (
data.data &&
!(data.data instanceof Buffer) &&
('parsed' in data.data)
)
return data.data && !(data.data instanceof Buffer) && 'parsed' in data.data
}

export async function getStakeAccount(
Expand Down

0 comments on commit 661ea4c

Please sign in to comment.