diff options
author | Riccardo Spagni <ric@spagni.net> | 2018-01-28 09:54:17 -0800 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2018-01-28 09:54:17 -0800 |
commit | 4fcf609942a19fe58021d55b6711de5d2440cd77 (patch) | |
tree | a28c65d230e5bfe8fb726c36f45350c871005309 | |
parent | Merge pull request #3188 (diff) | |
parent | cryptonote_protocol: fix std::move usage on different types (diff) | |
download | monero-4fcf609942a19fe58021d55b6711de5d2440cd77.tar.xz |
Merge pull request #3186
7ed62e63 cryptonote_protocol: fix std::move usage on different types (moneromooo-monero)
-rw-r--r-- | src/cryptonote_protocol/cryptonote_protocol_handler.inl | 2 |
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; |