From fa8858325cff669abf5d41c07d71c75c177ee112 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Mon, 22 Apr 2019 18:13:02 -0400 Subject: [PATCH] add lbry:// to permanent_url response field --- 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 5c261853f..53007d6cb 100644 --- a/lbrynet/wallet/transaction.py +++ b/lbrynet/wallet/transaction.py @@ -80,7 +80,7 @@ class Output(BaseOutput): @property def permanent_url(self) -> str: if self.script.is_claim_involved: - return f"{self.claim_name}#{self.claim_id}" + return f"lbry://{self.claim_name}#{self.claim_id}" raise ValueError('No claim associated.') @property