From 24152bfd4b25165146d50025fc022f63df999d89 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Wed, 22 Jan 2020 08:28:03 -0500 Subject: [PATCH] simplified Blocked result protobuf --- v2/proto/result.proto | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/v2/proto/result.proto b/v2/proto/result.proto index d0b9e8b..a0acec3 100644 --- a/v2/proto/result.proto +++ b/v2/proto/result.proto @@ -56,9 +56,5 @@ message Error { message Blocked { uint32 count = 1; - oneof reason { - bytes reposted_in_channel = 2; - bytes in_channel = 3; - string has_tag = 4; - } + bytes channel_hash = 2; }