forked from TrueCloudLab/frostfs-node
ca0e3211be
Use morph.Client directly. Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
23 lines
637 B
Go
23 lines
637 B
Go
package neofs
|
|
|
|
import (
|
|
neofsEvent "github.com/nspcc-dev/neofs-node/pkg/morph/event/neofs"
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
const setConfigMethod = "setConfig"
|
|
|
|
// Process config event by setting configuration value from main chain in
|
|
// side chain.
|
|
func (np *Processor) processConfig(config *neofsEvent.Config) {
|
|
if !np.alphabetState.IsAlphabet() {
|
|
np.log.Info("non alphabet mode, ignore config")
|
|
return
|
|
}
|
|
|
|
err := np.morphClient.NotaryInvoke(np.netmapContract, np.feeProvider.SideChainFee(), setConfigMethod,
|
|
config.ID(), config.Key(), config.Value())
|
|
if err != nil {
|
|
np.log.Error("can't relay set config event", zap.Error(err))
|
|
}
|
|
}
|