From f4153156266f7445df2536603494a0d3dbfbb6ed Mon Sep 17 00:00:00 2001 From: Bryan Stitt Date: Fri, 1 Sep 2023 16:56:20 -0700 Subject: [PATCH] check more possible empty values --- 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 a2cfb447..2530cda3 100644 --- a/web3_proxy/src/app/mod.rs +++ b/web3_proxy/src/app/mod.rs @@ -1424,7 +1424,7 @@ impl Web3ProxyApp { // if we got "null", it is probably because the tx is old. retry on nodes with old block data let try_archive = if let Ok(value) = &response_data { - value.get() == "null" + value.get() == "null" || value.get() == "" || value.get() == "\"\"" } else { true };