rpc/smartcontract: merge contract parameter types

Merged two types:
	- smartcontract.ParamType
	- rpc.StackParamType
into single one:
	- smartcontract.ParamType
as they duplicated the functionality.

NOTE: type smartcontract.MapType was added (as in C# implementation).

From now, list of supported smartcontract parameter types:
	UnknownType
	SignatureType
	BoolType
	IntegerType
	Hash160Type
	Hash256Type
	ByteArrayType
	PublicKeyType
	StringType
	ArrayType
	MapType
	InteropInterfaceType
	VoidType
This commit is contained in:
Anna Shaleva 2020-02-21 17:34:18 +03:00
parent 5d4dfbfa1a
commit 648e0bb242
13 changed files with 979 additions and 1001 deletions

View file

@ -7,6 +7,7 @@ import (
"fmt"
"github.com/CityOfZion/neo-go/pkg/encoding/address"
"github.com/CityOfZion/neo-go/pkg/smartcontract"
"github.com/CityOfZion/neo-go/pkg/util"
"github.com/pkg/errors"
)
@ -24,8 +25,8 @@ type (
// FuncParam represents a function argument parameter used in the
// invokefunction RPC method.
FuncParam struct {
Type StackParamType `json:"type"`
Value Param `json:"value"`
Type smartcontract.ParamType `json:"type"`
Value Param `json:"value"`
}
)