mirror of
https://github.com/luxfi/node.git
synced 2026-07-27 03:39:39 +00:00
Remove unused bloom filter, test helpers, metrics scaffolding, and linearizable VM wrapper. Trim stale go.sum entries. Add genesis builder helpers and xvm FX/genesis initialization.
16 lines
324 B
Go
16 lines
324 B
Go
// Copyright (C) 2019-2025, Lux Industries Inc. All rights reserved.
|
|
// See the file LICENSE for licensing terms.
|
|
|
|
package metrics
|
|
|
|
import "github.com/luxfi/metric"
|
|
|
|
type testGatherer struct {
|
|
mfs []*metric.MetricFamily
|
|
err error
|
|
}
|
|
|
|
func (g *testGatherer) Gather() ([]*metric.MetricFamily, error) {
|
|
return g.mfs, g.err
|
|
}
|