forked from TrueCloudLab/frostfs-node
a624bb881d
Basic settlement context is a main structure that implement logic of basic settlement phases: collecting assets from container owners and then distributing them to storage nodes. Signed-off-by: Alex Vanin <alexey@nspcc.ru>
6 lines
106 B
Go
6 lines
106 B
Go
package basic
|
|
|
|
func (inc *IncomeSettlementContext) Distribute() {
|
|
inc.mu.Lock()
|
|
defer inc.mu.Unlock()
|
|
}
|