Skip to content

Commit

Permalink
Merge branch 'roman-cketh-block-response-estimate' into 'master'
Browse files Browse the repository at this point in the history
fix(cketh): increase the block size estimate

This change bumps the eth_getBlockByNumber response size estimate to
12KiB because most of the recent blocks are above the 6KiB limit. 

See merge request dfinity-lab/public/ic!16129
  • Loading branch information
roman-kashitsyn committed Nov 15, 2023
2 parents e0f9c89 + 557dd68 commit e029d6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rs/ethereum/cketh/minter/src/eth_rpc_client/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ impl EthRpcClient {
block,
include_full_transactions: false,
},
ResponseSizeEstimate::new(6 * 1024),
ResponseSizeEstimate::new(12 * 1024),
)
.await;
results.reduce_with_equality()
Expand Down

0 comments on commit e029d6c

Please sign in to comment.