diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-01-26 10:13:06 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-01-26 10:13:06 +0000 |
commit | 7ed62e63e5f8543fed0f4cc3f03eaf4d131316cc (patch) | |
tree | 55fc772fd705ae4fddf494831913ea7e2968b9c6 /src/cryptonote_protocol | |
parent | Merge pull request #3130 (diff) | |
download | monero-7ed62e63e5f8543fed0f4cc3f03eaf4d131316cc.tar.xz |
cryptonote_protocol: fix std::move usage on different types
Diffstat (limited to 'src/cryptonote_protocol')
-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 700eceff3..41f48cf58 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; |