From 35c43647aa62d15cf86a9a1729dd0e26c583cb22 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Fri, 19 Apr 2019 08:49:50 -0400 Subject: [PATCH] use TXORef.hash instead of TXORef.id when signing claim with channel --- lbrynet/wallet/transaction.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lbrynet/wallet/transaction.py b/lbrynet/wallet/transaction.py index 08a41f3df..bb0b50074 100644 --- a/lbrynet/wallet/transaction.py +++ b/lbrynet/wallet/transaction.py @@ -96,7 +96,7 @@ class Output(BaseOutput): ] else: pieces = [ - self.tx_ref.tx.inputs[0].txo_ref.id.encode(), + self.tx_ref.tx.inputs[0].txo_ref.hash, self.claim.signing_channel_hash, self.claim.to_message_bytes() ]