Browse Source

do not start fee estimation loop with option: --dev-override-fee-rates

ppa-0.6.1
Simon Vrouwe 7 years ago
committed by Rusty Russell
parent
commit
795e0e1b21
  1. 11
      lightningd/chaintopology.c

11
lightningd/chaintopology.c

@ -727,8 +727,17 @@ void setup_topology(struct chain_topology *topo,
void begin_topology(struct chain_topology *topo) void begin_topology(struct chain_topology *topo)
{ {
/* Begin fee estimation. */ #if DEVELOPER
if (topo->dev_override_fee_rate) {
log_info(topo->log, "Fee estimation disabled because: "
"--dev-override-fee-rates");
} else {
/* Begin fee estimation. */
start_fee_estimate(topo);
}
#else
start_fee_estimate(topo); start_fee_estimate(topo);
#endif
try_extend_tip(topo); try_extend_tip(topo);
} }

Loading…
Cancel
Save