diff options
author | MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> | 2023-09-11 18:06:51 +0200 |
---|---|---|
committer | MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> | 2023-11-30 11:27:54 +0100 |
commit | fae00fe9c25af80024adda33d9077962964269ea (patch) | |
tree | e273f2c02b7b59911cb4993248793a037b06fe1a /src/bench | |
parent | fa7eb4f5c3d2438f9689cd46b22dcfd50f6bd751 (diff) |
Remove unused CDataStream
Diffstat (limited to 'src/bench')
-rw-r--r-- | src/bench/rpc_blockchain.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bench/rpc_blockchain.cpp b/src/bench/rpc_blockchain.cpp index 0fb222f3b5..2416d40798 100644 --- a/src/bench/rpc_blockchain.cpp +++ b/src/bench/rpc_blockchain.cpp @@ -23,7 +23,7 @@ struct TestBlockAndIndex { TestBlockAndIndex() { - CDataStream stream(benchmark::data::block413567, SER_NETWORK, PROTOCOL_VERSION); + DataStream stream{benchmark::data::block413567}; std::byte a{0}; stream.write({&a, 1}); // Prevent compaction |