diff options
author | luigi1111 <luigi1111w@gmail.com> | 2020-05-01 15:47:47 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2020-05-01 15:47:47 -0500 |
commit | ec90f9a54b868403e5c61160ff2b2f98ae4eef9f (patch) | |
tree | 2230b5f84d15c61be4f8158549d7fe2b5efe7fc5 /src/rpc/core_rpc_server.cpp | |
parent | Merge pull request #6452 (diff) | |
parent | bootstrap_daemon: fix missing virtual destructor and lambda capture (clang wa... (diff) | |
download | monero-ec90f9a54b868403e5c61160ff2b2f98ae4eef9f.tar.xz |
Merge pull request #6453
d2d3a81 bootstrap_daemon: fix missing virtual destructor and lambda capture (clang warning) (xiphon)
Diffstat (limited to 'src/rpc/core_rpc_server.cpp')
-rw-r--r-- | src/rpc/core_rpc_server.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpc/core_rpc_server.cpp b/src/rpc/core_rpc_server.cpp index 9b0eeb1f1..a789a7a1a 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)); |