Skip to content

Commit

Permalink
Adds missing return
Browse files Browse the repository at this point in the history
  • Loading branch information
kgrofelnik committed Mar 28, 2024
1 parent 0fff111 commit d509cf9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion oracles/src/repositories/oracle_repository.py
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ async def _sign_and_send_tx(self, tx) -> TxReceipt:
tx_hash = await self.web3_client.eth.send_raw_transaction(
signed_tx.rawTransaction
)
await self.web3_client.eth.wait_for_transaction_receipt(tx_hash)
return await self.web3_client.eth.wait_for_transaction_receipt(tx_hash)


def _value_or_none(value: Any) -> Optional[Any]:
Expand Down

0 comments on commit d509cf9

Please sign in to comment.