mirror of
https://github.com/Retropex/bitcoin.git
synced 2025-05-14 12:10:42 +02: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
@ -5,9 +5,16 @@
|
|||||||
|
|
||||||
#include <pubkey.h>
|
#include <pubkey.h>
|
||||||
|
|
||||||
|
#include <hash.h>
|
||||||
#include <secp256k1.h>
|
#include <secp256k1.h>
|
||||||
|
#include <secp256k1_extrakeys.h>
|
||||||
#include <secp256k1_recovery.h>
|
#include <secp256k1_recovery.h>
|
||||||
#include <secp256k1_schnorrsig.h>
|
#include <secp256k1_schnorrsig.h>
|
||||||
|
#include <span.h>
|
||||||
|
#include <uint256.h>
|
||||||
|
|
||||||
|
#include <algorithm>
|
||||||
|
#include <cassert>
|
||||||
|
|
||||||
namespace
|
namespace
|
||||||
{
|
{
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
#include <span.h>
|
#include <span.h>
|
||||||
#include <uint256.h>
|
#include <uint256.h>
|
||||||
|
|
||||||
#include <stdexcept>
|
#include <cstring>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
const unsigned int BIP32_EXTKEY_SIZE = 74;
|
const unsigned int BIP32_EXTKEY_SIZE = 74;
|
||||||
|
Loading…
Reference in New Issue
Block a user