diff options
author | MarcoFalke <falke.marco@gmail.com> | 2018-04-05 16:00:39 -0400 |
---|---|---|
committer | practicalswift <practicalswift@users.noreply.github.com> | 2018-04-06 16:29:14 +0200 |
commit | 3ebfb2dadbe63199a4712a46a7e72976d291193b (patch) | |
tree | 1d12a5e8ec609d4a2c9df98ca352a8529ef2eb55 /src/wallet/crypter.h | |
parent | 5f0c6a7b0e47e03f848dc992d37fe209dd9c6975 (diff) |
tests: Avoid test suite name collision in wallet crypto_tests
Diffstat (limited to 'src/wallet/crypter.h')
-rw-r--r-- | src/wallet/crypter.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wallet/crypter.h b/src/wallet/crypter.h index fdeb4cfee0..4c0c8ff5ec 100644 --- a/src/wallet/crypter.h +++ b/src/wallet/crypter.h @@ -67,7 +67,7 @@ public: typedef std::vector<unsigned char, secure_allocator<unsigned char> > CKeyingMaterial; -namespace crypto_tests +namespace wallet_crypto_tests { class TestCrypter; } @@ -75,7 +75,7 @@ namespace crypto_tests /** Encryption/decryption context with key information */ class CCrypter { -friend class crypto_tests::TestCrypter; // for test access to chKey/chIV +friend class wallet_crypto_tests::TestCrypter; // for test access to chKey/chIV private: std::vector<unsigned char, secure_allocator<unsigned char>> vchKey; std::vector<unsigned char, secure_allocator<unsigned char>> vchIV; |