From 665c12b9b511c7e312031d53dff0c86d8ecb8da1 Mon Sep 17 00:00:00 2001 From: Jonathan Moody <103143855+moodyjon@users.noreply.github.com> Date: Thu, 9 Jun 2022 12:36:06 -0400 Subject: [PATCH] Use the definite txo.amount (not EVERYTHING) when calling save_supports(). --- lbry/extras/daemon/daemon.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lbry/extras/daemon/daemon.py b/lbry/extras/daemon/daemon.py index cd66a0427..64e7f84b2 100644 --- a/lbry/extras/daemon/daemon.py +++ b/lbry/extras/daemon/daemon.py @@ -4362,7 +4362,7 @@ class Daemon(metaclass=JSONRPCServerType): 'nout': tx.position, 'address': claim_address, 'claim_id': claim_id, - 'amount': dewies_to_lbc(amount) + 'amount': dewies_to_lbc(new_txo.amount) }]}) self.component_manager.loop.create_task(self.analytics_manager.send_claim_action('new_support')) else: