cleaned up and added missing "include" statements for pubkey.cpp and pubkey.h

removed comments next to include statements.

removed comments in include statements.

changed assert.h to cassert based on pr comments
This commit is contained in:
William Bright 2021-04-21 15:16:13 -04:00
parent e16f8720dc
commit 71c824ed6c
2 changed files with 8 additions and 1 deletions

View file

@ -5,9 +5,16 @@
#include <pubkey.h>
#include <hash.h>
#include <secp256k1.h>
#include <secp256k1_extrakeys.h>
#include <secp256k1_recovery.h>
#include <secp256k1_schnorrsig.h>
#include <span.h>
#include <uint256.h>
#include <algorithm>
#include <cassert>
namespace
{

View file

@ -12,7 +12,7 @@
#include <span.h>
#include <uint256.h>
#include <stdexcept>
#include <cstring>
#include <vector>
const unsigned int BIP32_EXTKEY_SIZE = 74;