diff options
author | Martin Zumsande <mzumsande@gmail.com> | 2019-11-25 13:57:47 +0100 |
---|---|---|
committer | Martin Zumsande <mzumsande@gmail.com> | 2019-11-25 16:40:09 +0100 |
commit | 78e283e656bf1643944ffdb76185f3468eb25895 (patch) | |
tree | a80dd0ba15cf71e5d92709cf30d96d35cc403365 /src/bench | |
parent | f613e5dfdafe708f63ebb5193c44e2bc770c6651 (diff) |
[test] move wallet helper functions into test library
Diffstat (limited to 'src/bench')
-rw-r--r-- | src/bench/block_assemble.cpp | 2 | ||||
-rw-r--r-- | src/bench/wallet_balance.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/bench/block_assemble.cpp b/src/bench/block_assemble.cpp index 2ccae0c667..184367e1e5 100644 --- a/src/bench/block_assemble.cpp +++ b/src/bench/block_assemble.cpp @@ -5,8 +5,8 @@ #include <bench/bench.h> #include <consensus/validation.h> #include <crypto/sha256.h> -#include <test/util.h> #include <test/util/mining.h> +#include <test/util/wallet.h> #include <txmempool.h> #include <validation.h> diff --git a/src/bench/wallet_balance.cpp b/src/bench/wallet_balance.cpp index bd79ddfdd6..f39dcc0b71 100644 --- a/src/bench/wallet_balance.cpp +++ b/src/bench/wallet_balance.cpp @@ -6,8 +6,8 @@ #include <interfaces/chain.h> #include <node/context.h> #include <optional.h> -#include <test/util.h> #include <test/util/mining.h> +#include <test/util/wallet.h> #include <validationinterface.h> #include <wallet/wallet.h> |