diff --git a/lbry/extras/daemon/daemon.py b/lbry/extras/daemon/daemon.py index c1a7e0fdb..0f26499d8 100644 --- a/lbry/extras/daemon/daemon.py +++ b/lbry/extras/daemon/daemon.py @@ -2773,6 +2773,7 @@ class Daemon(metaclass=JSONRPCServerType): new_txo.private_key = old_txo.private_key new_txo.script.generate() + tx._reset() await tx.sign(funding_accounts) @@ -3959,6 +3960,7 @@ class Daemon(metaclass=JSONRPCServerType): new_txo = tx.outputs[0] new_txo.script.generate() + tx._reset() if channel: new_txo.sign(channel)