forked from TrueCloudLab/frostfs-node
33c3f18b4f
Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
21 lines
378 B
Go
21 lines
378 B
Go
package morph
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/spf13/cobra"
|
|
"github.com/spf13/viper"
|
|
)
|
|
|
|
func updateContracts(cmd *cobra.Command, _ []string) error {
|
|
wCtx, err := newInitializeContext(cmd, viper.GetViper())
|
|
if err != nil {
|
|
return fmt.Errorf("initialization error: %w", err)
|
|
}
|
|
|
|
if err := wCtx.deployContracts("migrate"); err != nil {
|
|
return err
|
|
}
|
|
|
|
return wCtx.setNNS()
|
|
}
|