From aa62ae33857e262689329d95c7d629bbc68b8dd4 Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Tue, 21 May 2019 09:54:26 +0930 Subject: [PATCH] pay: don't timeout, wait until we've succeeded or failed. Fixes: #2629 Signed-off-by: Rusty Russell --- plugins/pay.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/pay.c b/plugins/pay.c index c80702d75..076dcf0f7 100644 --- a/plugins/pay.c +++ b/plugins/pay.c @@ -273,7 +273,7 @@ static struct command_result *sendpay_done(struct command *cmd, { return send_outreq(cmd, "waitsendpay", waitsendpay_done, waitsendpay_error, pc, - "'payment_hash': '%s', 'timeout': 60", + "'payment_hash': '%s'", pc->payment_hash); }