Skip to content

Commit

Permalink
typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
guanqun committed May 29, 2021
1 parent b1dde0b commit 1e4974e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion async_web3/contract.py
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,8 @@ def __call__(self, *args: Tuple) -> Awaitable:
return self.transact(*args)

def build(self, *args: Tuple) -> SignedTransaction:
return self.build_transaction(*arg)
return self.build_transaction(*args)


class ContractCall(_ContractMethod):

Expand Down

0 comments on commit 1e4974e

Please sign in to comment.