mirror of
https://github.com/luxfi/node.git
synced 2026-07-27 03:39:39 +00:00
16 lines
375 B
Go
16 lines
375 B
Go
// Copyright (C) 2019-2025, Lux Industries Inc. All rights reserved.
|
|
// See the file LICENSE for licensing terms.
|
|
|
|
package version
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestCurrentRPCChainVMCompatible(t *testing.T) {
|
|
compatibleVersions := RPCChainVMProtocolCompatibility[RPCChainVMProtocol]
|
|
require.Contains(t, compatibleVersions, Current)
|
|
}
|