From 0437d9bfc9bde75ad00cb5aab5873e6e91d23b15 Mon Sep 17 00:00:00 2001 From: Bryan Stitt Date: Tue, 19 Sep 2023 15:38:40 -0700 Subject: [PATCH] sigh --- web3_proxy/src/app/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web3_proxy/src/app/mod.rs b/web3_proxy/src/app/mod.rs index f326a3af..a6405d18 100644 --- a/web3_proxy/src/app/mod.rs +++ b/web3_proxy/src/app/mod.rs @@ -1456,7 +1456,7 @@ impl Web3ProxyApp { // TODO: should this be block 0 instead? Some(&U64::one()), // TODO: is this a good way to allow lagged archive nodes a try - Some(&ead_block_num.saturating_sub(5.into()).clamp(U64::one(), U64::MAX)), + Some(&head_block_num.saturating_sub(5.into()).clamp(U64::one(), U64::MAX)), ) .await; }