mirror of
https://github.com/luxfi/node.git
synced 2026-07-27 03:39:39 +00:00
Routine maintenance: config.go, rpcdb/service.go, node/node.go, vms/registry/registry.go, vms/rpcchainvm/runtime/subprocess/initializer.go.
53 lines
1.5 KiB
Go
53 lines
1.5 KiB
Go
// Copyright (C) 2019-2025, Lux Industries Inc. All rights reserved.
|
|
// See the file LICENSE for licensing terms.
|
|
|
|
package subprocess
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"sync"
|
|
|
|
"github.com/luxfi/node/version"
|
|
"github.com/luxfi/node/vms/rpcchainvm/runtime"
|
|
)
|
|
|
|
var _ runtime.Initializer = (*initializer)(nil)
|
|
|
|
// Subprocess VM Runtime initializer.
|
|
type initializer struct {
|
|
path string
|
|
|
|
once sync.Once
|
|
// Address of the RPC Chain VM server
|
|
vmAddr string
|
|
// Error, if one occurred, during Initialization
|
|
err error
|
|
// Initialized is closed once Initialize is called
|
|
initialized chan struct{}
|
|
}
|
|
|
|
func newInitializer(path string) *initializer {
|
|
return &initializer{
|
|
path: path,
|
|
initialized: make(chan struct{}),
|
|
}
|
|
}
|
|
|
|
func (i *initializer) Initialize(_ context.Context, protocolVersion uint, vmAddr string) error {
|
|
i.once.Do(func() {
|
|
if version.RPCChainVMProtocol != protocolVersion {
|
|
i.err = fmt.Errorf("%w. Lux Node version %s implements RPCChainVM protocol version %d. The VM located at %s implements RPCChainVM protocol version %d. Please make sure that there is an exact match of the protocol versions. This can be achieved by updating your VM or running an older/newer version of Lux Node. Please be advised that some virtual machines may not yet support the latest RPCChainVM protocol version",
|
|
runtime.ErrProtocolVersionMismatch,
|
|
version.Current,
|
|
version.RPCChainVMProtocol,
|
|
i.path,
|
|
protocolVersion,
|
|
)
|
|
}
|
|
i.vmAddr = vmAddr
|
|
close(i.initialized)
|
|
})
|
|
return i.err
|
|
}
|