From c950a60d2270b6d6ebb68438cb866db27e900058 Mon Sep 17 00:00:00 2001 From: elnosh Date: Fri, 12 Jul 2024 14:07:43 -0500 Subject: [PATCH] Wallet: default to SIG_INPUTS in P2PK lock --- cashu/wallet/helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cashu/wallet/helpers.py b/cashu/wallet/helpers.py index 627423d4..85c73b72 100644 --- a/cashu/wallet/helpers.py +++ b/cashu/wallet/helpers.py @@ -137,7 +137,7 @@ async def send( secret_lock = await wallet.create_p2pk_lock( lock.split(":")[1], locktime_seconds=settings.locktime_delta_seconds, - sig_all=True, + sig_all=False, n_sigs=1, ) logger.debug(f"Secret lock: {secret_lock}")