check more possible empty values

This commit is contained in:
Bryan Stitt 2023-09-01 16:56:20 -07:00
parent 7530605e5b
commit f415315626

View File

@ -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
};