From b31368a3a7d44cb7845b80f27fdb83e187b5e38f Mon Sep 17 00:00:00 2001 From: Victor Shyba Date: Tue, 8 Dec 2020 20:50:37 -0300 Subject: [PATCH] ClaimMeta attr typo --- lbry/schema/result.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lbry/schema/result.py b/lbry/schema/result.py index 742bc44d6..a8fbcefe4 100644 --- a/lbry/schema/result.py +++ b/lbry/schema/result.py @@ -113,10 +113,10 @@ class Outputs: 'expiration_height': claim.expiration_height, 'effective_amount': claim.effective_amount, 'support_amount': claim.support_amount, - 'trend_group': claim.trend_group, - 'trend_mixed': claim.trend_mixed, - 'trend_local': claim.trend_local, - 'trend_global': claim.trend_global, + 'trend_group': claim.trending_group, + 'trend_mixed': claim.trending_mixed, + 'trend_local': claim.trending_local, + 'trend_global': claim.trending_global, } if claim.HasField('channel'): txo.channel = tx_map[claim.channel.tx_hash].outputs[claim.channel.nout]