From dd26770c1c5b17d4bcd12678f618762508719537 Mon Sep 17 00:00:00 2001 From: Nex Date: Mon, 8 Oct 2018 21:08:58 +0800 Subject: [PATCH] Update error info --- bdchain/api/common.proto | 1 + 1 file changed, 1 insertion(+) diff --git a/bdchain/api/common.proto b/bdchain/api/common.proto index 76dc142..b4187c5 100644 --- a/bdchain/api/common.proto +++ b/bdchain/api/common.proto @@ -11,6 +11,7 @@ message Error { string code = 1; // One of a server-defined set of error codes. string message = 2; // A human-readable representation of the error. string target = 3; // The target of the error. + repeated Error details = 4; // An array of details about specific errors that led to this reported error. } message ClientVersionResponse {