[#828] adm: Fix policy contract deploy
Signed-off-by: Airat Arifullin <a.arifullin@yadro.com>
This commit is contained in:
parent
5521737f0b
commit
306f12e6c5
1 changed files with 3 additions and 1 deletions
|
@ -575,8 +575,10 @@ func (c *initializeContext) getContractDeployData(ctrName string, keysParam []an
|
||||||
c.Contracts[containerContract].Hash,
|
c.Contracts[containerContract].Hash,
|
||||||
keysParam,
|
keysParam,
|
||||||
configParam)
|
configParam)
|
||||||
case proxyContract, policyContract:
|
case proxyContract:
|
||||||
items = nil
|
items = nil
|
||||||
|
case policyContract:
|
||||||
|
items = []any{nil}
|
||||||
default:
|
default:
|
||||||
panic(fmt.Sprintf("invalid contract name: %s", ctrName))
|
panic(fmt.Sprintf("invalid contract name: %s", ctrName))
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue