aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2018-01-28 09:54:17 -0800
committerRiccardo Spagni <ric@spagni.net>2018-01-28 09:54:17 -0800
commit4fcf609942a19fe58021d55b6711de5d2440cd77 (patch)
treea28c65d230e5bfe8fb726c36f45350c871005309
parentMerge pull request #3188 (diff)
parentcryptonote_protocol: fix std::move usage on different types (diff)
downloadmonero-4fcf609942a19fe58021d55b6711de5d2440cd77.tar.xz
Merge pull request #3186
7ed62e63 cryptonote_protocol: fix std::move usage on different types (moneromooo-monero)
Diffstat (limited to '')
-rw-r--r--src/cryptonote_protocol/cryptonote_protocol_handler.inl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptonote_protocol/cryptonote_protocol_handler.inl b/src/cryptonote_protocol/cryptonote_protocol_handler.inl
index 712d47282..bc11ab6e4 100644
--- a/src/cryptonote_protocol/cryptonote_protocol_handler.inl
+++ b/src/cryptonote_protocol/cryptonote_protocol_handler.inl
@@ -445,7 +445,7 @@ namespace cryptonote
//
// Also, remember to pepper some whitespace changes around to bother
// moneromooo ... only because I <3 him.
- std::vector<size_t> need_tx_indices;
+ std::vector<uint64_t> need_tx_indices;
transaction tx;
crypto::hash tx_hash;