We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3fc6114 + da3f356 commit 21b74c9Copy full SHA for 21b74c9
CHANGELOG.md
@@ -6,6 +6,7 @@ Changelog for NeoFS Node
6
### Added
7
8
### Fixed
9
+- Basic income collection/distribution in networks with rate set to zero (#3352)
10
11
### Changed
12
pkg/innerring/processors/settlement/basic/collect.go
@@ -25,6 +25,11 @@ func (inc *IncomeSettlementContext) Collect() {
25
return
26
}
27
28
+ if cachedRate == 0 {
29
+ inc.log.Info("basic income rate is zero, skipping collection")
30
+ return
31
+ }
32
+
33
cnrEstimations, err := inc.estimations.Estimations(inc.epoch)
34
if err != nil {
35
inc.log.Error("can't fetch container size estimations",
0 commit comments