refactor: change maxStoragePrice math for readability
This commit is contained in:
parent
d628ede1ee
commit
20a273a0dd
|
@ -149,9 +149,10 @@ SELECT AVG(rate) as average_rate FROM (
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
maxStoragePrice := p.config.Config().Core.Storage.Sia.MaxStoragePrice / averageRate
|
maxStoragePrice := p.config.Config().Core.Storage.Sia.MaxStoragePrice
|
||||||
maxStoragePrice = maxStoragePrice / redundancy.Redundancy()
|
maxStoragePrice = maxStoragePrice / redundancy.Redundancy()
|
||||||
maxStoragePrice = maxStoragePrice / units.TiB
|
maxStoragePrice = maxStoragePrice / units.TiB
|
||||||
|
maxStoragePrice = maxStoragePrice / averageRate
|
||||||
|
|
||||||
p.logger.Debug("Setting max storage price", zap.Float64("maxStoragePrice", maxStoragePrice))
|
p.logger.Debug("Setting max storage price", zap.Float64("maxStoragePrice", maxStoragePrice))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue