From a97cf7fbc23c0411b42b932ad703963b0514adbe Mon Sep 17 00:00:00 2001 From: Jan Pochyla Date: Tue, 15 Jan 2019 13:17:12 +0100 Subject: [PATCH] wallet: fix multisig issue introduced in 4db5f56d --- src/apps/wallet/sign_tx/scripts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/wallet/sign_tx/scripts.py b/src/apps/wallet/sign_tx/scripts.py index 79f3a64c58..4c97f0d34c 100644 --- a/src/apps/wallet/sign_tx/scripts.py +++ b/src/apps/wallet/sign_tx/scripts.py @@ -166,7 +166,7 @@ def witness_p2wsh( signatures[signature_index] = signature # filter empty - signatures = [s for s in multisig.signatures if s] + signatures = [s for s in signatures if s] # witness program + signatures + redeem script num_of_witness_items = 1 + len(signatures) + 1