mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-25 02:33:24 -03:00
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:
parent
e16f8720dc
commit
71c824ed6c
2 changed files with 8 additions and 1 deletions
|
@ -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
|
||||
{
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
#include <span.h>
|
||||
#include <uint256.h>
|
||||
|
||||
#include <stdexcept>
|
||||
#include <cstring>
|
||||
#include <vector>
|
||||
|
||||
const unsigned int BIP32_EXTKEY_SIZE = 74;
|
||||
|
|
Loading…
Add table
Reference in a new issue