Skip to content

Commit 1d63ff3

Browse files
committed
Update eth.py
1 parent 14f9f6b commit 1d63ff3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

faster_web3/eth/eth.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,13 +115,13 @@ class Eth(BaseEth):
115115

116116
# eth_accounts
117117

118-
_accounts: Method[Callable[[], Tuple[ChecksumAddress, ...]]] = Method(
118+
_accounts: Method[Callable[[], List[ChecksumAddress]]] = Method(
119119
RPC.eth_accounts,
120120
is_property=True,
121121
)
122122

123123
@property
124-
def accounts(self) -> Tuple[ChecksumAddress, ...]:
124+
def accounts(self) -> List[ChecksumAddress]:
125125
return self._accounts()
126126

127127
# eth_blobBaseFee

0 commit comments

Comments
 (0)