Skip to content

Commit

Permalink
fix merge
Browse files Browse the repository at this point in the history
  • Loading branch information
sukantoraymond committed Oct 8, 2024
1 parent 3b00882 commit 9c3323f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pkg/vm/create_custom.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ func CreateCustomSidecar(
customVMBuildScript string,
vmPath string,
tokenSymbol string,
nonSov bool,
sovereign bool,
) (*models.Sidecar, error) {
ux.Logger.PrintToUser("creating custom VM subnet %s", subnetName)

Expand Down Expand Up @@ -83,7 +83,7 @@ func CreateCustomSidecar(
}

sc.RPCVersion = rpcVersion
sc.Sovereign = nonSov
sc.Sovereign = sovereign
return sc, nil
}

Expand Down
4 changes: 2 additions & 2 deletions pkg/vm/create_evm.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ func CreateEvmSidecar(
subnetEVMVersion string,
tokenSymbol string,
getRPCVersionFromBinary bool,
notSov bool,
sovereign bool,
) (*models.Sidecar, error) {
var (
err error
Expand Down Expand Up @@ -72,7 +72,7 @@ func CreateEvmSidecar(
sc.Subnet = subnetName
sc.TokenSymbol = tokenSymbol
sc.TokenName = tokenSymbol + " Token"
sc.Sovereign = notSov
sc.Sovereign = sovereign
return sc, nil
}

Expand Down

0 comments on commit 9c3323f

Please sign in to comment.