aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAlexander Blair <snipa@jagtech.io>2020-08-16 12:43:10 -0700
committerAlexander Blair <snipa@jagtech.io>2020-08-16 12:43:11 -0700
commit009ca6fcd31a6152120692dca7392008091c5e94 (patch)
tree2bef7d5b95911b86054c6669209a30a36b9158eb /tests
parentMerge pull request #6593 (diff)
parentOptimize ZMQ-JSON vector reading; GetBlocksFast reads 24%+ faster (diff)
downloadmonero-009ca6fcd31a6152120692dca7392008091c5e94.tar.xz
Merge pull request #6601
98c151ecb Optimize ZMQ-JSON vector reading; GetBlocksFast reads 24%+ faster (Lee Clagett) 60627c9f2 Switch to insitu parsing for ZMQ-JSON; GetBlocksFast reads 13%+ faster (Lee Clagett) fe96e66eb Fix pruned tx for ZMQ's GetBlocksFast (Lee Clagett)
Diffstat (limited to 'tests')
-rw-r--r--tests/unit_tests/zmq_rpc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit_tests/zmq_rpc.cpp b/tests/unit_tests/zmq_rpc.cpp
index 1d065fc45..59759bed8 100644
--- a/tests/unit_tests/zmq_rpc.cpp
+++ b/tests/unit_tests/zmq_rpc.cpp
@@ -304,7 +304,7 @@ namespace
: cryptonote::rpc::RpcHandler()
{}
- virtual epee::byte_slice handle(const std::string& request) override final
+ virtual epee::byte_slice handle(std::string&& request) override final
{
throw std::logic_error{"not implemented"};
}