Skip to content

Commit

Permalink
fix conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
sukantoraymond committed Nov 14, 2024
1 parent ed04296 commit 035151c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pkg/node/local.go
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ func StartLocalNode(
}
}
serverLogPath := filepath.Join(rootDir, "server.log")
sd := subnet.NewLocalDeployer(app, avalancheGoVersion, avalanchegoBinaryPath, "")
sd := subnet.NewLocalDeployer(app, avalancheGoVersion, avalanchegoBinaryPath, "", true)
if err := sd.StartServer(
constants.ServerRunFileLocalClusterPrefix,
binutils.LocalClusterGRPCServerPort,
Expand Down Expand Up @@ -623,10 +623,10 @@ func LocalStatus(app *application.Avalanche, clusterName string, blockchainName
}

func GetInfo(uri string, blockchainID string) (
ids.NodeID, // nodeID
ids.NodeID, // nodeID
*signer.ProofOfPossession, // nodePOP
bool, // isBootstrapped
error, // error
bool, // isBootstrapped
error, // error
) {
client := info.NewClient(uri)
ctx, cancel := utils.GetAPILargeContext()
Expand All @@ -644,7 +644,7 @@ func GetInfo(uri string, blockchainID string) (

func GetBlockchainStatus(uri string, blockchainID string) (
string, // status
error, // error
error, // error
) {
client := platformvm.NewClient(uri)
ctx, cancel := utils.GetAPILargeContext()
Expand Down

0 comments on commit 035151c

Please sign in to comment.