From 8dcf934b4b10dc06e99791f1c62bf7fdf0682000 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Faruk=20Terzio=C4=9Flu?= Date: Fri, 17 Apr 2020 18:16:36 +0300 Subject: [PATCH] Change ApiError.code to ulong --- EosSharp/EosSharp.Core/Exceptions/ApiErrorException.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EosSharp/EosSharp.Core/Exceptions/ApiErrorException.cs b/EosSharp/EosSharp.Core/Exceptions/ApiErrorException.cs index 5e018ae..6496f83 100644 --- a/EosSharp/EosSharp.Core/Exceptions/ApiErrorException.cs +++ b/EosSharp/EosSharp.Core/Exceptions/ApiErrorException.cs @@ -47,7 +47,7 @@ public override void GetObjectData(SerializationInfo info, StreamingContext cont [Serializable] public class ApiError { - public int code; + public ulong code; public string name; public string what; public List details;