diff options
author | Andrew Chow <achow101-github@achow101.com> | 2019-06-06 22:52:24 +0200 |
---|---|---|
committer | Andrew Chow <achow101-github@achow101.com> | 2019-07-09 16:20:18 -0400 |
commit | 37a79a4fccbf6cd65a933594e24e59d36e674653 (patch) | |
tree | 3ef48673c8380a9c7a18cd2e790512177384ca54 /src/wallet/crypter.h | |
parent | 16f8096e911e4d59292240a17e2d4004f0500b9e (diff) |
Move various SigningProviders to signingprovider.{cpp,h}
Moves all of the various SigningProviders out of sign.{cpp,h} and
keystore.{cpp,h}. As such, keystore.{cpp,h} is also removed.
Includes and the Makefile are updated to reflect this. Includes were largely
changed using:
git grep -l "keystore.h" | xargs sed -i -e 's;keystore.h;script/signingprovider.h;g'
Diffstat (limited to 'src/wallet/crypter.h')
-rw-r--r-- | src/wallet/crypter.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/wallet/crypter.h b/src/wallet/crypter.h index 95235903f4..4cc40a8c6f 100644 --- a/src/wallet/crypter.h +++ b/src/wallet/crypter.h @@ -5,12 +5,14 @@ #ifndef BITCOIN_WALLET_CRYPTER_H #define BITCOIN_WALLET_CRYPTER_H -#include <keystore.h> #include <serialize.h> #include <support/allocators/secure.h> +#include <script/signingprovider.h> #include <atomic> +#include <boost/signals2/signal.hpp> + const unsigned int WALLET_CRYPTO_KEY_SIZE = 32; const unsigned int WALLET_CRYPTO_SALT_SIZE = 8; const unsigned int WALLET_CRYPTO_IV_SIZE = 16; |