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.
21 lines
411 B
Go
21 lines
411 B
Go
// Copyright (C) 2019-2025, Lux Industries Inc. All rights reserved.
|
|
// See the file LICENSE for licensing terms.
|
|
|
|
package xsvm
|
|
|
|
import (
|
|
"context"
|
|
|
|
luxWarp "github.com/luxfi/warp"
|
|
)
|
|
|
|
var _ luxWarp.Verifier = (*xsvmVerifier)(nil)
|
|
|
|
// xsvmVerifier allows signing all warp messages
|
|
type xsvmVerifier struct{}
|
|
|
|
func (xsvmVerifier) Verify(context.Context, *luxWarp.UnsignedMessage, []byte) error {
|
|
return nil
|
|
}
|
|
|