aboutsummaryrefslogtreecommitdiff
path: root/src/device
diff options
context:
space:
mode:
authorAlexander Blair <snipa@jagtech.io>2020-08-16 12:45:37 -0700
committerAlexander Blair <snipa@jagtech.io>2020-08-16 12:45:37 -0700
commitbc484947313e1ce87d0c1db302c24f1fe733fc18 (patch)
treef539d4623a6b368a88462aaa01bd7e82d8d897be /src/device
parentMerge pull request #6634 (diff)
parentavoid a couple needless copies (diff)
downloadmonero-bc484947313e1ce87d0c1db302c24f1fe733fc18.tar.xz
Merge pull request #6661
267ce5b71 avoid a couple needless copies (moneromooo-monero)
Diffstat (limited to 'src/device')
-rw-r--r--src/device/device_ledger.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/device/device_ledger.cpp b/src/device/device_ledger.cpp
index 4bd3d75b1..30964848d 100644
--- a/src/device/device_ledger.cpp
+++ b/src/device/device_ledger.cpp
@@ -1548,7 +1548,7 @@ namespace hw {
const bool need_additional_txkeys_x = need_additional_txkeys;
std::vector<crypto::secret_key> additional_tx_keys_x;
- for (const auto k: additional_tx_keys) {
+ for (const auto &k: additional_tx_keys) {
additional_tx_keys_x.push_back(hw::ledger::decrypt(k));
}