From 9ee6922fccc2b310b1a0565278f49e60ebe7b690 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Mon, 20 May 2019 14:54:51 -0400 Subject: [PATCH] use float for trending_* result --- v2/proto/result.proto | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/v2/proto/result.proto b/v2/proto/result.proto index 602c5c7..09f4690 100644 --- a/v2/proto/result.proto +++ b/v2/proto/result.proto @@ -26,9 +26,9 @@ message ClaimMeta { uint64 support_amount = 5; uint32 claims_in_channel = 6; uint32 trending_group = 7; - sint64 trending_mixed = 8; - sint64 trending_local = 9; - sint64 trending_global = 10; + float trending_mixed = 8; + float trending_local = 9; + float trending_global = 10; } message Error {