renepay: remove unused result member.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
Rusty Russell 2023-08-10 09:31:19 +09:30
parent e8cfb40709
commit 5e5f592369
2 changed files with 0 additions and 3 deletions

View file

@ -61,7 +61,6 @@ struct payment *payment_new(const tal_t *ctx,
p->use_shadow = use_shadow;
p->groupid=1;
p->result = NULL;
p->local_gossmods = gossmap_localmods_new(p);
p->disabled = tal_arr(p,struct short_channel_id,0);
p->rexmit_timer = NULL;

View file

@ -108,8 +108,6 @@ struct payment {
/* Groupid, so listpays() can group them back together */
u64 groupid;
struct command_result * result;
};