mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-01-18 05:12:45 +01:00
cleanup: Use u32
as the type of max_hops
in gossipd
This commit is contained in:
parent
8103e48f8c
commit
d8dce6e61f
@ -1122,7 +1122,7 @@ find_shorter_route(const tal_t *ctx, struct routing_state *rstate,
|
||||
struct node *src, struct node *dst,
|
||||
const struct node *me,
|
||||
struct amount_msat msat,
|
||||
size_t max_hops,
|
||||
u32 max_hops,
|
||||
double fuzz, const struct siphash_seed *base_seed,
|
||||
struct chan **long_route,
|
||||
struct amount_msat *fee)
|
||||
@ -1245,7 +1245,7 @@ find_route(const tal_t *ctx, struct routing_state *rstate,
|
||||
struct amount_msat msat,
|
||||
double riskfactor,
|
||||
double fuzz, const struct siphash_seed *base_seed,
|
||||
size_t max_hops,
|
||||
u32 max_hops,
|
||||
struct amount_msat *fee)
|
||||
{
|
||||
struct node *src, *dst;
|
||||
@ -2494,7 +2494,7 @@ struct route_hop *get_route(const tal_t *ctx, struct routing_state *rstate,
|
||||
u32 final_cltv,
|
||||
double fuzz, u64 seed,
|
||||
struct exclude_entry **excluded,
|
||||
size_t max_hops)
|
||||
u32 max_hops)
|
||||
{
|
||||
struct chan **route;
|
||||
struct amount_msat total_amount;
|
||||
|
@ -385,7 +385,7 @@ struct route_hop *get_route(const tal_t *ctx, struct routing_state *rstate,
|
||||
double fuzz,
|
||||
u64 seed,
|
||||
struct exclude_entry **excluded,
|
||||
size_t max_hops);
|
||||
u32 max_hops);
|
||||
/* Disable channel(s) based on the given routing failure. */
|
||||
void routing_failure(struct routing_state *rstate,
|
||||
const struct node_id *erring_node,
|
||||
|
@ -146,7 +146,7 @@ struct route_hop *get_route(const tal_t *ctx UNNEEDED, struct routing_state *rst
|
||||
double fuzz UNNEEDED,
|
||||
u64 seed UNNEEDED,
|
||||
struct exclude_entry **excluded UNNEEDED,
|
||||
size_t max_hops UNNEEDED)
|
||||
u32 max_hops UNNEEDED)
|
||||
{ fprintf(stderr, "get_route called!\n"); abort(); }
|
||||
/* Generated stub for gossip_peerd_wire_type_name */
|
||||
const char *gossip_peerd_wire_type_name(int e UNNEEDED)
|
||||
|
@ -153,7 +153,7 @@ struct route_hop *get_route(const tal_t *ctx UNNEEDED, struct routing_state *rst
|
||||
double fuzz UNNEEDED,
|
||||
u64 seed UNNEEDED,
|
||||
struct exclude_entry **excluded UNNEEDED,
|
||||
size_t max_hops UNNEEDED)
|
||||
u32 max_hops UNNEEDED)
|
||||
{ fprintf(stderr, "get_route called!\n"); abort(); }
|
||||
/* Generated stub for gossip_peerd_wire_type_name */
|
||||
const char *gossip_peerd_wire_type_name(int e UNNEEDED)
|
||||
|
@ -312,7 +312,7 @@ static struct command_result *json_getroute(struct command *cmd,
|
||||
struct node_id *source;
|
||||
const jsmntok_t *excludetok;
|
||||
struct amount_msat *msat;
|
||||
unsigned *cltv;
|
||||
u32 *cltv;
|
||||
double *riskfactor;
|
||||
const struct exclude_entry **excluded;
|
||||
u32 *max_hops;
|
||||
|
Loading…
Reference in New Issue
Block a user