MCPcopy Create free account
hub / github.com/ElementsProject/lightning / wait_index_increase

Function wait_index_increase

lightningd/wait.c:197–212  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

195}
196
197void wait_index_increase(struct lightningd *ld,
198 struct db *db,
199 enum wait_subsystem subsystem,
200 enum wait_index index,
201 u64 num,
202 ...)
203{
204 va_list ap;
205
206 if (num == 0)
207 return;
208
209 va_start(ap, num);
210 wait_index_bump(ld, db, subsystem, index, num, ap);
211 va_end(ap);
212}
213
214static struct command_result *param_subsystem(struct command *cmd,
215 const char *name,

Callers 2

migrate_from_account_dbFunction · 0.85
htlcs_index_deletedFunction · 0.85

Calls 1

wait_index_bumpFunction · 0.85

Tested by

no test coverage detected