Skip to content

Commit ae52977

Browse files
committed
fixed whitespace
1 parent dc2d83b commit ae52977

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bitcoin/tx.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -497,7 +497,7 @@ struct bitcoin_tx *pull_bitcoin_tx(const tal_t *ctx,
497497
tx->output = tal_arr(tx, struct bitcoin_tx_output, tx->output_count);
498498
for (i = 0; i < tx->output_count; i++)
499499
pull_output(tx, cursor, max, tx->output + i);
500-
500+
501501
if (flag & SEGREGATED_WITNESS_FLAG) {
502502
for (i = 0; i < tx->input_count; i++)
503503
pull_witness(tx->input, i, cursor, max);

daemon/secrets.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ void peer_secrets_init(struct peer *peer)
157157

158158
new_keypair(peer->dstate, &peer->secrets->commit, &peer->local.commitkey);
159159
new_keypair(peer->dstate, &peer->secrets->final, &peer->local.finalkey);
160-
randombytes_buf(peer->secrets->revocation_seed.u.u8, sizeof(peer->secrets->revocation_seed.u.u8));
160+
randombytes_buf(peer->secrets->revocation_seed.u.u8, sizeof(peer->secrets->revocation_seed.u.u8));
161161
shachain_init(&peer->their_preimages);
162162
}
163163

0 commit comments

Comments
 (0)