Browse Source

Fix "make check-source"

Obviously, haven't run it in a while.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
ppa-0.6.1
Rusty Russell 9 years ago
parent
commit
15f7ec436c
  1. 2
      bitcoin/address.c
  2. 4
      daemon/cryptopkt.c

2
bitcoin/address.c

@ -1,7 +1,7 @@
#include "address.h"
#include "pubkey.h"
#include <ccan/mem/mem.h>
#include <ccan/crypto/sha256/sha256.h>
#include <ccan/mem/mem.h>
void bitcoin_address(const struct pubkey *key, struct bitcoin_address *addr)
{

4
daemon/cryptopkt.c

@ -14,10 +14,10 @@
#include <ccan/mem/mem.h>
#include <ccan/short_types/short_types.h>
#include <inttypes.h>
#include <sodium/crypto_aead_chacha20poly1305.h>
#include <sodium/randombytes.h>
#include <secp256k1.h>
#include <secp256k1_ecdh.h>
#include <sodium/crypto_aead_chacha20poly1305.h>
#include <sodium/randombytes.h>
#define MAX_PKT_LEN (1024 * 1024)

Loading…
Cancel
Save