Browse Source

lightning: fix reverse test causing crash when paying to no owner.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
ppa-0.6.1
Rusty Russell 8 years ago
parent
commit
5b1d60839a
  1. 2
      lightningd/pay.c

2
lightningd/pay.c

@ -315,7 +315,7 @@ static void json_sendpay(struct command *cmd,
if (!peer->owner || !streq(peer->owner->name, "lightningd_channel")) { if (!peer->owner || !streq(peer->owner->name, "lightningd_channel")) {
command_fail(cmd, "first peer in %s", command_fail(cmd, "first peer in %s",
peer->owner ? "limbo" : peer->owner->name); peer->owner ? peer->owner->name : "limbo");
return; return;
} }

Loading…
Cancel
Save