github.com/dim4egster/coreth@v0.10.2/plugin/evm/health.go (about)

     1  // (c) 2019-2020, Ava Labs, Inc. All rights reserved.
     2  // See the file LICENSE for licensing terms.
     3  
     4  package evm
     5  
     6  // Health returns nil if this chain is healthy.
     7  // Also returns details, which should be one of:
     8  // string, []byte, map[string]string
     9  func (vm *VM) HealthCheck() (interface{}, error) {
    10  	// TODO perform actual health check
    11  	return nil, nil
    12  }