@@ -56,7 +56,7 @@ var _ = ginkgo.Describe("[Local Subnet SOV]", ginkgo.Ordered, func() {
5656 ginkgo .It ("can deploy a custom vm subnet to local SOV" , func () {
5757 customVMPath , err := utils .DownloadCustomVMBin (mapping [utils .SoloSubnetEVMKey1 ])
5858 gomega .Expect (err ).Should (gomega .BeNil ())
59- commands .CreateCustomVMConfigSOV (subnetName , utils .SubnetEvmGenesisPoaPath , customVMPath )
59+ commands .CreateCustomVMConfigSOV (subnetName , utils .SubnetEvmGenesisPoaPath , customVMPath , commands . PoaValidatorManagerOwner )
6060 deployOutput := commands .DeploySubnetLocallyWithVersionSOV (subnetName , mapping [utils .SoloAvagoKey ])
6161 rpcs , err := utils .ParseRPCsFromOutput (deployOutput )
6262 if err != nil {
@@ -76,7 +76,7 @@ var _ = ginkgo.Describe("[Local Subnet SOV]", ginkgo.Ordered, func() {
7676 })
7777
7878 ginkgo .It ("can deploy a SubnetEvm subnet to local SOV" , func () {
79- commands .CreateSubnetEvmConfigSOV (subnetName , utils .SubnetEvmGenesisPoaPath )
79+ commands .CreateSubnetEvmConfigSOV (subnetName , utils .SubnetEvmGenesisPoaPath , commands . PoaValidatorManagerOwner )
8080 deployOutput := commands .DeploySubnetLocallySOV (subnetName )
8181 rpcs , err := utils .ParseRPCsFromOutput (deployOutput )
8282 if err != nil {
@@ -96,7 +96,7 @@ var _ = ginkgo.Describe("[Local Subnet SOV]", ginkgo.Ordered, func() {
9696 })
9797
9898 ginkgo .It ("can load viper config and setup node properties for local deploy SOV" , func () {
99- commands .CreateSubnetEvmConfigSOV (subnetName , utils .SubnetEvmGenesisPoaPath )
99+ commands .CreateSubnetEvmConfigSOV (subnetName , utils .SubnetEvmGenesisPoaPath , commands . PoaValidatorManagerOwner )
100100 deployOutput := commands .DeploySubnetLocallyWithViperConfSOV (subnetName , confPath )
101101 rpcs , err := utils .ParseRPCsFromOutput (deployOutput )
102102 if err != nil {
@@ -111,7 +111,7 @@ var _ = ginkgo.Describe("[Local Subnet SOV]", ginkgo.Ordered, func() {
111111 })
112112
113113 ginkgo .It ("can't deploy the same subnet twice to local SOV" , func () {
114- commands .CreateSubnetEvmConfigSOV (subnetName , utils .SubnetEvmGenesisPoaPath )
114+ commands .CreateSubnetEvmConfigSOV (subnetName , utils .SubnetEvmGenesisPoaPath , commands . PoaValidatorManagerOwner )
115115
116116 deployOutput := commands .DeploySubnetLocallySOV (subnetName )
117117 fmt .Println (deployOutput )
@@ -135,8 +135,8 @@ var _ = ginkgo.Describe("[Local Subnet SOV]", ginkgo.Ordered, func() {
135135 })
136136
137137 ginkgo .It ("can deploy multiple subnets to local SOV" , func () {
138- commands .CreateSubnetEvmConfigSOV (subnetName , utils .SubnetEvmGenesisPoaPath )
139- commands .CreateSubnetEvmConfigSOV (secondSubnetName , utils .SubnetEvmGenesis2Path )
138+ commands .CreateSubnetEvmConfigSOV (subnetName , utils .SubnetEvmGenesisPoaPath , commands . PoaValidatorManagerOwner )
139+ commands .CreateSubnetEvmConfigSOV (secondSubnetName , utils .SubnetEvmGenesis2Path , commands . PoaValidatorManagerOwner )
140140
141141 deployOutput := commands .DeploySubnetLocallySOV (subnetName )
142142 rpcs1 , err := utils .ParseRPCsFromOutput (deployOutput )
@@ -171,7 +171,7 @@ var _ = ginkgo.Describe("[Local Subnet SOV]", ginkgo.Ordered, func() {
171171 })
172172
173173 ginkgo .It ("can deploy custom chain config SOV" , func () {
174- commands .CreateSubnetEvmConfigSOV (subnetName , utils .SubnetEvmAllowFeeRecpPath )
174+ commands .CreateSubnetEvmConfigSOV (subnetName , utils .SubnetEvmAllowFeeRecpPath , commands . PoaValidatorManagerOwner )
175175
176176 addr := "0x8db97C7cEcE249c2b98bDC0226Cc4C2A57BF52FC"
177177
@@ -212,7 +212,7 @@ var _ = ginkgo.Describe("[Local Subnet SOV]", ginkgo.Ordered, func() {
212212 })
213213
214214 ginkgo .It ("can deploy with custom per chain config node SOV" , func () {
215- commands .CreateSubnetEvmConfigSOV (subnetName , utils .SubnetEvmGenesisPoaPath )
215+ commands .CreateSubnetEvmConfigSOV (subnetName , utils .SubnetEvmGenesisPoaPath , commands . PoaValidatorManagerOwner )
216216
217217 // create per node chain config
218218 nodesRPCTxFeeCap := map [string ]string {
@@ -273,7 +273,7 @@ var _ = ginkgo.Describe("[Local Subnet SOV]", ginkgo.Ordered, func() {
273273 "NodeID-7Xhw2mDxuDS44j42TCB6U5579esbSt3Lg" ,
274274 }
275275
276- commands .CreateSubnetEvmConfigSOV (subnetName , utils .SubnetEvmGenesisPoaPath )
276+ commands .CreateSubnetEvmConfigSOV (subnetName , utils .SubnetEvmGenesisPoaPath , commands . PoaValidatorManagerOwner )
277277 deployOutput := commands .DeploySubnetLocallySOV (subnetName )
278278 _ , err := utils .ParseRPCsFromOutput (deployOutput )
279279 if err != nil {
@@ -308,7 +308,7 @@ var _ = ginkgo.Describe("[Subnet Compatibility]", func() {
308308
309309 ginkgo .It ("can deploy a subnet-evm with old version SOV" , func () {
310310 subnetEVMVersion := mapping [utils .SoloSubnetEVMKey1 ]
311- commands .CreateSubnetEvmConfigWithVersionSOV (subnetName , utils .SubnetEvmGenesisPoaPath , subnetEVMVersion )
311+ commands .CreateSubnetEvmConfigWithVersionSOV (subnetName , utils .SubnetEvmGenesisPoaPath , subnetEVMVersion , commands . PoaValidatorManagerOwner )
312312 deployOutput := commands .DeploySubnetLocallySOV (subnetName )
313313 rpcs , err := utils .ParseRPCsFromOutput (deployOutput )
314314 if err != nil {
@@ -331,8 +331,8 @@ var _ = ginkgo.Describe("[Subnet Compatibility]", func() {
331331 subnetEVMVersion1 := mapping [utils .SoloSubnetEVMKey1 ]
332332 subnetEVMVersion2 := "v0.6.12"
333333
334- commands .CreateSubnetEvmConfigWithVersionSOV (subnetName , utils .SubnetEvmGenesisPoaPath , subnetEVMVersion1 )
335- commands .CreateSubnetEvmConfigWithVersionSOV (secondSubnetName , utils .SubnetEvmGenesis2Path , subnetEVMVersion2 )
334+ commands .CreateSubnetEvmConfigWithVersionSOV (subnetName , utils .SubnetEvmGenesisPoaPath , subnetEVMVersion1 , commands . PoaValidatorManagerOwner )
335+ commands .CreateSubnetEvmConfigWithVersionSOV (secondSubnetName , utils .SubnetEvmGenesis2Path , subnetEVMVersion2 , commands . PoaValidatorManagerOwner )
336336
337337 deployOutput := commands .DeploySubnetLocallySOV (subnetName )
338338 rpcs , err := utils .ParseRPCsFromOutput (deployOutput )
0 commit comments