Files
node/vms/example/xsvm/warp.go
T
Hanzo AI 3774075c95 feat: clean up dead code, update deps, add xvm genesis/fx and genesis builder
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.
2026-04-19 17:05:59 -07:00

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
}