mirror of
https://github.com/aljazceru/lightning.git
synced 2025-12-19 07:04:22 +01:00
Add the missing space between "if" and "("
Changelog-None
This commit is contained in:
committed by
Christian Decker
parent
0ac91b4f99
commit
2ea91f834c
@@ -957,7 +957,7 @@ static bool channelseq(struct channel *c1, struct channel *c2)
|
||||
}
|
||||
|
||||
CHECK((c1->last_tx != NULL) == (c2->last_tx != NULL));
|
||||
if(c1->last_tx) {
|
||||
if (c1->last_tx) {
|
||||
CHECK(bitcoin_tx_eq(c1->last_tx, c2->last_tx));
|
||||
}
|
||||
CHECK(memeq(&c1->last_sig, sizeof(c1->last_sig),
|
||||
|
||||
Reference in New Issue
Block a user