You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
404 B
17 lines
404 B
10 years ago
|
#ifndef GATHER_UPDATES_H
|
||
|
#define GATHER_UPDATES_H
|
||
|
#include "lightning.pb-c.h"
|
||
|
|
||
|
struct signature;
|
||
|
struct sha256;
|
||
|
|
||
|
uint64_t gather_updates(const OpenChannel *o1, const OpenChannel *o2,
|
||
|
const OpenAnchor *oa,
|
||
|
char **argv,
|
||
|
uint64_t *our_amount, uint64_t *their_amount,
|
||
|
struct sha256 *our_rhash,
|
||
|
struct sha256 *their_rhash,
|
||
|
struct signature *their_commit_sig);
|
||
|
|
||
|
#endif /* GATHER_UPDATES_H */
|