diff --git a/CHANGELOG.md b/CHANGELOG.md index 6edd4a4a..ef3d51fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# Current +# 0.28 - Add: Google Cloud HSM hardware wallet support in `eth_defi.gcloud_hsm_wallet` - Add Multicall3 support in `multicall_batcher` module diff --git a/eth_defi/confirmation.py b/eth_defi/confirmation.py index a713c4f2..56703cae 100644 --- a/eth_defi/confirmation.py +++ b/eth_defi/confirmation.py @@ -904,10 +904,11 @@ def wait_and_broadcast_multiple_nodes_mev_blocker( poll_delay = datetime.timedelta(seconds=0.1) logger.info( - "wait_and_broadcast_multiple_nodes_mev_blocker(): broadcasting %d transactions, anvil is %s, provider is %s", + "wait_and_broadcast_multiple_nodes_mev_blocker(): broadcasting %d transactions, anvil is %s, provider is %s, timeout is %s", len(txs), anviled, transaction_provider, + max_timeout, ) # Initial broadcast of txs diff --git a/pyproject.toml b/pyproject.toml index 4577882b..f453dc7d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "web3-ethereum-defi" -version = "0.27" +version = "0.28" description = "Python library for Uniswap, Aave, ChainLink, Enzyme and other protocols on BNB Chain, Polygon, Ethereum and other blockchains" authors = ["Mikko Ohtamaa "] license = "MIT"