lower eth_getBlockByNumber level to Warn

This commit is contained in:
Bryan Stitt 2022-12-20 22:01:35 -08:00
parent 79075f9974
commit e60b9dc3fe

View File

@ -197,7 +197,7 @@ impl Web3Connection {
"eth_getBlockByNumber",
&json!(("latest", false)),
// error here are expected, so keep the level low
Level::Debug.into(),
Level::Warn.into(),
)
.await?
.context("no block during check_block_data_limit!")?;
@ -751,7 +751,7 @@ impl Web3Connection {
.request(
"eth_getBlockByNumber",
&json!(("latest", false)),
Level::Error.into(),
Level::Warn.into(),
)
.await;
@ -844,7 +844,7 @@ impl Web3Connection {
.request(
"eth_getBlockByNumber",
&json!(("latest", false)),
Level::Error.into(),
Level::Warn.into(),
)
.await;