diff options
author | Lee Clagett <code@leeclagett.com> | 2020-05-29 22:08:19 -0400 |
---|---|---|
committer | Lee Clagett <code@leeclagett.com> | 2020-08-14 19:46:59 +0000 |
commit | 60627c9f24f5c322c59abee7c8e9e03a2b2ccf5a (patch) | |
tree | a0dee7bae6708f24732aa8ed0e3da39de4729a8f /src/rpc/daemon_handler.h | |
parent | Fix pruned tx for ZMQ's GetBlocksFast (diff) | |
download | monero-60627c9f24f5c322c59abee7c8e9e03a2b2ccf5a.tar.xz |
Switch to insitu parsing for ZMQ-JSON; GetBlocksFast reads 13%+ faster
Diffstat (limited to 'src/rpc/daemon_handler.h')
-rw-r--r-- | src/rpc/daemon_handler.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpc/daemon_handler.h b/src/rpc/daemon_handler.h index aa3470c25..31c4f3ec4 100644 --- a/src/rpc/daemon_handler.h +++ b/src/rpc/daemon_handler.h @@ -133,7 +133,7 @@ class DaemonHandler : public RpcHandler void handle(const GetOutputDistribution::Request& req, GetOutputDistribution::Response& res); - epee::byte_slice handle(const std::string& request) override final; + epee::byte_slice handle(std::string&& request) override final; private: |