From 097b9345eb42826c36392b6e6f24bca203147d56 Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Sat, 17 Feb 2018 15:10:43 +1030 Subject: [PATCH] wallet: load route_nodes and route_channels when seeking a particular entry. This got missed when 299b280f7 got merged. Signed-off-by: Rusty Russell --- wallet/wallet.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wallet/wallet.c b/wallet/wallet.c index 1935aed61..4a5d11312 100644 --- a/wallet/wallet.c +++ b/wallet/wallet.c @@ -1561,7 +1561,7 @@ wallet_payment_list(const tal_t *ctx, wallet->db, "SELECT id, status, destination, " "msatoshi, payment_hash, timestamp, payment_preimage, " - "path_secrets " + "path_secrets, route_nodes, route_channels " "FROM payments " "WHERE payment_hash = ?;"); sqlite3_bind_sha256(stmt, 1, payment_hash);