Skip to content

Commit 9a5518a

Browse files
authored
Fixed typo in verifying gateway fee recipient
1 parent 32bb8f2 commit 9a5518a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

celo_sdk/wallet.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def fee_currency(self, new_fee_currency: str):
8585

8686
@gateway_fee_recipient.setter
8787
def gateway_fee_recipient(self, new_gateway_fee_recipient: str):
88-
if not self.web3.is_Address(new_gateway_fee_recipient):
88+
if not self.web3.isAddress(new_gateway_fee_recipient):
8989
raise TypeError("Incorrect gateway fee recipient")
9090
self._gateway_fee_recipient = new_gateway_fee_recipient
9191

0 commit comments

Comments
 (0)