Skip to content

Commit

Permalink
feat: read transfer data from destination blockchain
Browse files Browse the repository at this point in the history
  • Loading branch information
danut13 committed Jul 11, 2024
1 parent 6aabd2c commit 73d0317
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions pantos/client/library/blockchains/ethereum.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,11 @@ def _get_utilities(self) -> EthereumUtilities:
# Docstring inherited
return typing.cast(EthereumUtilities, super()._get_utilities())

def _create_unknown_transfer_error(
self, **kwargs: typing.Any) -> BlockchainClientError:
return self._create_error(specialized_error_class=UnknownTransferError,
**kwargs)

def __generate_sender_nonce(self, hub_contract: Web3Contract,
sender_address: BlockchainAddress) -> int:
while True:
Expand Down

0 comments on commit 73d0317

Please sign in to comment.