From a289282bad9167fd072fee3fb7ea4cf7fa18dcc6 Mon Sep 17 00:00:00 2001 From: lisa neigut Date: Wed, 3 Oct 2018 17:29:11 -0700 Subject: [PATCH] gossipd: use u64 for `htlc_minimum_msat` field It's u64 in the spec, so we should use u64 too. --- gossipd/routing.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gossipd/routing.h b/gossipd/routing.h index 4af8a4e5a435..39dc942a0f54 100644 --- a/gossipd/routing.h +++ b/gossipd/routing.h @@ -27,7 +27,7 @@ struct half_chan { s64 last_timestamp; /* Minimum number of msatoshi in an HTLC */ - u32 htlc_minimum_msat; + u64 htlc_minimum_msat; /* Maximum number of msatoshis in an HTLC */ u64 htlc_maximum_msat;