diff options
| author | Alexander Blair <snipa@jagtech.io> | 2020-08-16 12:44:59 -0700 |
|---|---|---|
| committer | Alexander Blair <snipa@jagtech.io> | 2020-08-16 12:44:59 -0700 |
| commit | 8f02e7a7fcd93a797c2393aaded54aa499d0c3fc (patch) | |
| tree | 6b5b58f9e1a844257420109571c7ad0217c0f6f5 /src/wallet/wallet2.cpp | |
| parent | 976a9e0c728d1cc6522954fe499fc3ff05e4840e (diff) | |
| parent | ef694d028f79673afca854e75acc418f06a5b71f (diff) | |
| download | monzero-core-8f02e7a7fcd93a797c2393aaded54aa499d0c3fc.tar.gz monzero-core-8f02e7a7fcd93a797c2393aaded54aa499d0c3fc.tar.xz monzero-core-8f02e7a7fcd93a797c2393aaded54aa499d0c3fc.zip | |
Merge pull request #6632
ef694d028 fix warning by removing std::move() on temporary http_client object (woodser)
Diffstat (limited to 'src/wallet/wallet2.cpp')
| -rw-r--r-- | src/wallet/wallet2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index abc6981a0..f971bbd7a 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -1125,7 +1125,7 @@ void wallet_device_callback::on_progress(const hw::device_progress& event) } wallet2::wallet2(network_type nettype, uint64_t kdf_rounds, bool unattended, std::unique_ptr<epee::net_utils::http::http_client_factory> http_client_factory): - m_http_client(std::move(http_client_factory->create())), + m_http_client(http_client_factory->create()), m_multisig_rescan_info(NULL), m_multisig_rescan_k(NULL), m_upper_transaction_weight_limit(0), |
