compiler: implement RoleManagement contract wrapper

This commit is contained in:
Evgeniy Stratonikov 2021-02-08 11:08:48 +03:00
parent 77fcfeccff
commit 2f26490e59
2 changed files with 38 additions and 0 deletions

View file

@ -5,9 +5,16 @@ import (
"github.com/nspcc-dev/neo-go/pkg/core/native"
"github.com/nspcc-dev/neo-go/pkg/interop/native/nameservice"
"github.com/nspcc-dev/neo-go/pkg/interop/native/roles"
"github.com/stretchr/testify/require"
)
func TestRoleManagementRole(t *testing.T) {
require.EqualValues(t, native.RoleOracle, roles.Oracle)
require.EqualValues(t, native.RoleStateValidator, roles.StateValidator)
require.EqualValues(t, native.RoleP2PNotary, roles.P2PNotary)
}
func TestNameServiceRecordType(t *testing.T) {
require.EqualValues(t, native.RecordTypeA, nameservice.TypeA)
require.EqualValues(t, native.RecordTypeCNAME, nameservice.TypeCNAME)