github.com/MetalBlockchain/subnet-evm@v0.6.3/tests/utils/constants.go (about) 1 // Copyright (C) 2019-2022, Ava Labs, Inc. All rights reserved. 2 // See the file LICENSE for licensing terms. 3 4 package utils 5 6 import "time" 7 8 const ( 9 // Timeout to boot the AvalancheGo node 10 BootAvalancheNodeTimeout = 5 * time.Minute 11 12 // Timeout for the health API to check the AvalancheGo is ready 13 HealthCheckTimeout = 5 * time.Second 14 15 DefaultLocalNodeURI = "http://127.0.0.1:9650" 16 )