2020-09-08 09:01:38 +00:00
|
|
|
package neofs
|
|
|
|
|
|
|
|
import (
|
2022-01-31 11:58:55 +00:00
|
|
|
nmClient "github.com/nspcc-dev/neofs-node/pkg/morph/client/netmap"
|
2020-09-08 09:01:38 +00:00
|
|
|
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) {
|
2021-03-23 15:20:44 +00:00
|
|
|
if !np.alphabetState.IsAlphabet() {
|
|
|
|
np.log.Info("non alphabet mode, ignore config")
|
2020-09-08 09:01:38 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-01-31 11:58:55 +00:00
|
|
|
prm := nmClient.SetConfigPrm{}
|
2021-11-10 11:05:51 +00:00
|
|
|
|
|
|
|
prm.SetID(config.ID())
|
|
|
|
prm.SetKey(config.Key())
|
|
|
|
prm.SetValue(config.Value())
|
|
|
|
prm.SetHash(config.TxHash())
|
|
|
|
|
|
|
|
err := np.netmapClient.SetConfig(prm)
|
2020-09-08 09:01:38 +00:00
|
|
|
if err != nil {
|
|
|
|
np.log.Error("can't relay set config event", zap.Error(err))
|
|
|
|
}
|
|
|
|
}
|