web: fix hang when candles fetched are slightly diff than before

This commit is contained in:
nym21
2025-06-17 22:30:11 +02:00
parent 49d66a133e
commit 9b275ecdae
3 changed files with 8 additions and 92 deletions

View File

@@ -948,7 +948,7 @@ impl Vecs {
path,
&format!("cumulative_{}", suffix("net_realized_profit_and_loss_30d_change")),
true,
version + VERSION + Version::TWO,
version + VERSION + Version::new(3),
format,
StorableVecGeneatorOptions::default().add_last()
)
@@ -959,7 +959,7 @@ impl Vecs {
path,
&format!("cumulative_{}", suffix("net_realized_profit_and_loss_30d_change_relative_to_realized_cap")),
true,
version + VERSION + Version::TWO,
version + VERSION + Version::new(3),
format,
StorableVecGeneatorOptions::default().add_last()
)
@@ -970,7 +970,7 @@ impl Vecs {
path,
&format!("cumulative_{}", suffix("net_realized_profit_and_loss_30d_change_relative_to_market_cap")),
true,
version + VERSION + Version::TWO,
version + VERSION + Version::new(3),
format,
StorableVecGeneatorOptions::default().add_last()
)