[#1633] neofs-adm: Allow to set custom NNS zone for deployed contracts

Signed-off-by: Evgenii Stratonikov <evgeniy@morphbits.ru>
remotes/fyrchik/fix-innerring
Evgenii Stratonikov 2022-07-29 11:16:17 +03:00 committed by fyrchik
parent 6146df4998
commit 5d02613c33
1 changed files with 4 additions and 1 deletions

View File

@ -21,6 +21,7 @@ import (
const (
contractPathFlag = "contract"
updateFlag = "update"
customZoneFlag = "domain"
)
var deployCmd = &cobra.Command{
@ -48,6 +49,7 @@ func init() {
_ = deployCmd.MarkFlagFilename(contractPathFlag)
ff.Bool(updateFlag, false, "Update an existing contract")
ff.String(customZoneFlag, "neofs", "Custom zone for NNS (default: 'neofs')")
}
func deployContractCmd(cmd *cobra.Command, args []string) error {
@ -76,7 +78,8 @@ func deployContractCmd(cmd *cobra.Command, args []string) error {
callHash := c.nativeHash(nativenames.Management)
method := deployMethodName
domain := ctrName + ".neofs"
zone, _ := cmd.Flags().GetString(customZoneFlag)
domain := ctrName + "." + zone
isUpdate, _ := cmd.Flags().GetBool(updateFlag)
if isUpdate {
cs.Hash, err = nnsResolveHash(c.Client, nnsCs.Hash, domain)