Skip to content

Commit de8512b

Browse files
committed
Update async_eth.py
1 parent 1d63ff3 commit de8512b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

faster_web3/eth/async_eth.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,13 +131,13 @@ class AsyncEth(BaseEth):
131131

132132
# eth_accounts
133133

134-
_accounts: Method[Callable[[], Awaitable[Tuple[ChecksumAddress, ...]]]] = Method(
134+
_accounts: Method[Callable[[], Awaitable[List[ChecksumAddress]]]] = Method(
135135
RPC.eth_accounts,
136136
is_property=True,
137137
)
138138

139139
@property
140-
async def accounts(self) -> Tuple[ChecksumAddress, ...]:
140+
async def accounts(self) -> List[ChecksumAddress]:
141141
return await self._accounts()
142142

143143
# eth_blobBaseFee

0 commit comments

Comments
 (0)