From aacba705fec1d4cf655823582737f2d6c1f4eabc Mon Sep 17 00:00:00 2001 From: Alexey Kiselev Date: Tue, 24 Nov 2020 02:43:13 +0300 Subject: [PATCH] Ride new lists type (#383) * New DEB package scripts. MainNet seed nodes updated. * RIDE lists type changed to List[Any] --- pkg/ride/runtime.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/ride/runtime.go b/pkg/ride/runtime.go index 329c87994..b5d8dd56e 100644 --- a/pkg/ride/runtime.go +++ b/pkg/ride/runtime.go @@ -297,7 +297,7 @@ func (a rideNamedType) get(prop string) (rideType, error) { type rideList []rideType func (a rideList) instanceOf() string { - return "List" + return "List[Any]" } func (a rideList) eq(other rideType) bool {