Skip to content

Commit e8a83c3

Browse files
zhibiao.panrustyrussell
authored andcommitted
fix "missing braces around initializer"
Fixes #20
1 parent 5e7b3d0 commit e8a83c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

daemon/bitcoind.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ static void process_transactions(struct bitcoin_cli *bcli)
200200

201201
end = json_next(tokens);
202202
for (t = tokens + 1; t < end; t = json_next(t)) {
203-
struct sha256_double txid, blkhash = { 0 };
203+
struct sha256_double txid, blkhash;
204204
const jsmntok_t *txidtok, *conftok, *blkindxtok, *blktok;
205205
unsigned int conf;
206206
bool is_coinbase;

0 commit comments

Comments
 (0)