aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/test/walletdb_tests.cpp
diff options
context:
space:
mode:
authorMarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz>2023-09-11 18:06:51 +0200
committerMarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz>2023-11-30 11:27:54 +0100
commitfae00fe9c25af80024adda33d9077962964269ea (patch)
treee273f2c02b7b59911cb4993248793a037b06fe1a /src/wallet/test/walletdb_tests.cpp
parentfa7eb4f5c3d2438f9689cd46b22dcfd50f6bd751 (diff)
downloadbitcoin-fae00fe9c25af80024adda33d9077962964269ea.tar.xz
Remove unused CDataStream
Diffstat (limited to 'src/wallet/test/walletdb_tests.cpp')
-rw-r--r--src/wallet/test/walletdb_tests.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wallet/test/walletdb_tests.cpp b/src/wallet/test/walletdb_tests.cpp
index 0d27f99d37..fee8c85873 100644
--- a/src/wallet/test/walletdb_tests.cpp
+++ b/src/wallet/test/walletdb_tests.cpp
@@ -17,11 +17,11 @@ BOOST_FIXTURE_TEST_SUITE(walletdb_tests, BasicTestingSetup)
BOOST_AUTO_TEST_CASE(walletdb_readkeyvalue)
{
/**
- * When ReadKeyValue() reads from either a "key" or "wkey" it first reads the CDataStream steam into a
+ * When ReadKeyValue() reads from either a "key" or "wkey" it first reads the DataStream into a
* CPrivKey or CWalletKey respectively and then reads a hash of the pubkey and privkey into a uint256.
* Wallets from 0.8 or before do not store the pubkey/privkey hash, trying to read the hash from old
* wallets throws an exception, for backwards compatibility this read is wrapped in a try block to
- * silently fail. The test here makes sure the type of exception thrown from CDataStream::read()
+ * silently fail. The test here makes sure the type of exception thrown from DataStream::read()
* matches the type we expect, otherwise we need to update the "key"/"wkey" exception type caught.
*/
DataStream ssValue{};