Skip to content

Commit

Permalink
gossipd: use u64 for htlc_minimum_msat field
Browse files Browse the repository at this point in the history
It's u64 in the spec, so we should use u64 too.
  • Loading branch information
niftynei authored and rustyrussell committed Oct 9, 2018
1 parent b9331e5 commit a289282
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gossipd/routing.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit a289282

Please sign in to comment.