9f8eb0fd51
Signed-off-by: Alex Vanin <alexey@nspcc.ru>
27 lines
666 B
Go
27 lines
666 B
Go
package neofs
|
|
|
|
import (
|
|
"github.com/nspcc-dev/neofs-node/pkg/innerring/invoke"
|
|
neofsEvent "github.com/nspcc-dev/neofs-node/pkg/morph/event/neofs"
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
// Process config event by setting configuration value from main chain in
|
|
// side chain.
|
|
func (np *Processor) processConfig(config *neofsEvent.Config) {
|
|
if !np.activeState.IsActive() {
|
|
np.log.Info("passive mode, ignore deposit")
|
|
return
|
|
}
|
|
|
|
err := invoke.SetConfig(np.morphClient, np.netmapContract,
|
|
&invoke.SetConfigArgs{
|
|
ID: config.ID(),
|
|
Key: config.Key(),
|
|
Value: config.Value(),
|
|
},
|
|
)
|
|
if err != nil {
|
|
np.log.Error("can't relay set config event", zap.Error(err))
|
|
}
|
|
}
|