aboutsummaryrefslogtreecommitdiff
path: root/plugin/evm/health.go
blob: ea618d297d0f92c33ce662d276bccfd284a01377 (plain) (blame)
1
2
3
4
5
6
7
8
9
package evm

// Health returns nil if this chain is healthy.
// Also returns details, which should be one of:
// string, []byte, map[string]string
func (vm *VM) Health() (interface{}, error) {
	// TODO perform actual health check
	return nil, nil
}