Skip to content

Commit

Permalink
Fix typo from previous commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
calina-c committed May 2, 2022
1 parent 825e351 commit cde8071
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ocean_provider/utils/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,6 @@ def sign_send_and_wait_for_receipt(
web3: Web3, transaction: TxParams, from_account: LocalAccount
) -> Tuple[HexStr, TxReceipt]:
"""Returns the transaction id and transaction receipt."""
transaction_id, transaction_hash = sign_and_send(web3, transaction, from_account)
transaction_hash, transaction_id = sign_and_send(web3, transaction, from_account)

return (transaction_id, web3.eth.wait_for_transaction_receipt(transaction_hash))

0 comments on commit cde8071

Please sign in to comment.