Skip to content

Commit

Permalink
cleaned up and added missing "include" statements for pubkey.cpp and …
Browse files Browse the repository at this point in the history
…pubkey.h

removed comments next to include statements.

removed comments in include statements.

changed assert.h to cassert based on pr comments
  • Loading branch information
whb07 committed Apr 22, 2021
1 parent e16f872 commit 71c824e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions src/pubkey.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
2 changes: 1 addition & 1 deletion src/pubkey.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#include <span.h>
#include <uint256.h>

#include <stdexcept>
#include <cstring>
#include <vector>

const unsigned int BIP32_EXTKEY_SIZE = 74;
Expand Down

0 comments on commit 71c824e

Please sign in to comment.