From 557dd68dbaeec9df4b4b7ac2654339a181fe6924 Mon Sep 17 00:00:00 2001 From: Roman Kashitsyn Date: Wed, 15 Nov 2023 21:59:06 +0000 Subject: [PATCH] fix(cketh): increase the block size estimate --- rs/ethereum/cketh/minter/src/eth_rpc_client/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rs/ethereum/cketh/minter/src/eth_rpc_client/mod.rs b/rs/ethereum/cketh/minter/src/eth_rpc_client/mod.rs index a5adcc12b87..eb5a766e56b 100644 --- a/rs/ethereum/cketh/minter/src/eth_rpc_client/mod.rs +++ b/rs/ethereum/cketh/minter/src/eth_rpc_client/mod.rs @@ -146,7 +146,7 @@ impl EthRpcClient { block, include_full_transactions: false, }, - ResponseSizeEstimate::new(6 * 1024), + ResponseSizeEstimate::new(12 * 1024), ) .await; results.reduce_with_equality()