mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-10 20:03:34 -03:00
bloom: cleanup includes
This commit is contained in:
parent
f1ed1d3194
commit
a11da75411
2 changed files with 8 additions and 5 deletions
|
@ -4,17 +4,19 @@
|
|||
|
||||
#include <bloom.h>
|
||||
|
||||
#include <primitives/transaction.h>
|
||||
#include <hash.h>
|
||||
#include <primitives/transaction.h>
|
||||
#include <random.h>
|
||||
#include <script/script.h>
|
||||
#include <script/standard.h>
|
||||
#include <random.h>
|
||||
#include <span.h>
|
||||
#include <streams.h>
|
||||
|
||||
#include <math.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include <algorithm>
|
||||
#include <cmath>
|
||||
#include <cstdlib>
|
||||
#include <limits>
|
||||
#include <vector>
|
||||
|
||||
static constexpr double LN2SQUARED = 0.4804530139182014246671025263266649717305529515945455;
|
||||
static constexpr double LN2 = 0.6931471805599453094172321214581765680755001343602552;
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
#define BITCOIN_BLOOM_H
|
||||
|
||||
#include <serialize.h>
|
||||
#include <span.h>
|
||||
|
||||
#include <vector>
|
||||
|
||||
|
|
Loading…
Reference in a new issue