From 01252e8cc84229ad0f47921e1b2a74592de72ffc Mon Sep 17 00:00:00 2001 From: Anton Kaliaev Date: Wed, 22 Nov 2017 16:18:06 -0600 Subject: [PATCH] mark Result as deprecated --- types/result.go | 1 + 1 file changed, 1 insertion(+) diff --git a/types/result.go b/types/result.go index 8dba2448..e37f6f49 100644 --- a/types/result.go +++ b/types/result.go @@ -8,6 +8,7 @@ import ( // Result is a common result object for ABCI calls. // CONTRACT: a zero Result is OK. +// DEPRECATED: prefer raw types instead. type Result struct { Code CodeType `json:"code"` Data data.Bytes `json:"data"`