File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ BITCOIN_TESTS += \
94
94
wallet/test/wallet_test_fixture.h \
95
95
wallet/test/accounting_tests.cpp \
96
96
wallet/test/wallet_tests.cpp \
97
- wallet/test/crypto_tests .cpp \
97
+ wallet/test/wallet_crypto_tests .cpp \
98
98
wallet/test/coinselector_tests.cpp
99
99
endif
100
100
Original file line number Diff line number Diff line change @@ -67,15 +67,15 @@ class CMasterKey
67
67
68
68
typedef std::vector<unsigned char , secure_allocator<unsigned char > > CKeyingMaterial;
69
69
70
- namespace crypto_tests
70
+ namespace wallet_crypto_tests
71
71
{
72
72
class TestCrypter ;
73
73
}
74
74
75
75
/* * Encryption/decryption context with key information */
76
76
class CCrypter
77
77
{
78
- friend class crypto_tests ::TestCrypter; // for test access to chKey/chIV
78
+ friend class wallet_crypto_tests ::TestCrypter; // for test access to chKey/chIV
79
79
private:
80
80
std::vector<unsigned char , secure_allocator<unsigned char >> vchKey;
81
81
std::vector<unsigned char , secure_allocator<unsigned char >> vchIV;
Original file line number Diff line number Diff line change 10
10
11
11
#include < boost/test/unit_test.hpp>
12
12
13
- BOOST_FIXTURE_TEST_SUITE (crypto_tests , BasicTestingSetup)
13
+ BOOST_FIXTURE_TEST_SUITE (wallet_crypto_tests , BasicTestingSetup)
14
14
15
15
class TestCrypter
16
16
{
You can’t perform that action at this time.
0 commit comments