aboutsummaryrefslogtreecommitdiff
path: root/src/rpc
diff options
context:
space:
mode:
authorxiphon <xiphon@protonmail.com>2020-04-15 21:12:03 +0000
committerxiphon <xiphon@protonmail.com>2020-04-15 21:22:55 +0000
commitd2d3a81d0e1ab88e50eb5c82e3e142e38235a546 (patch)
tree6ebfdf4aa02cacffad534cdc98eb0e1899cdd1af /src/rpc
parentMerge pull request #6397 (diff)
downloadmonero-d2d3a81d0e1ab88e50eb5c82e3e142e38235a546.tar.xz
bootstrap_daemon: fix missing virtual destructor and lambda capture (clang warning)
Diffstat (limited to 'src/rpc')
-rw-r--r--src/rpc/bootstrap_node_selector.h2
-rw-r--r--src/rpc/core_rpc_server.cpp2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/rpc/bootstrap_node_selector.h b/src/rpc/bootstrap_node_selector.h
index fc993719b..47722a008 100644
--- a/src/rpc/bootstrap_node_selector.h
+++ b/src/rpc/bootstrap_node_selector.h
@@ -54,6 +54,8 @@ namespace bootstrap_node
struct selector
{
+ virtual ~selector() = default;
+
virtual void handle_result(const std::string &address, bool success) = 0;
virtual boost::optional<node_info> next_node() = 0;
};
diff --git a/src/rpc/core_rpc_server.cpp b/src/rpc/core_rpc_server.cpp
index f097c93fa..aa4e3c5cd 100644
--- a/src/rpc/core_rpc_server.cpp
+++ b/src/rpc/core_rpc_server.cpp
@@ -224,7 +224,7 @@ namespace cryptonote
}
else if (address == "auto")
{
- auto get_nodes = [this, credits_per_hash_threshold]() {
+ auto get_nodes = [this]() {
return get_public_nodes(credits_per_hash_threshold);
};
m_bootstrap_daemon.reset(new bootstrap_daemon(std::move(get_nodes), rpc_payment_enabled));