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 /src/cryptonote_protocol | |
| parent | 6ed314854cf87a7eb5810ef8a5dd707b4b9295e7 (diff) | |
| parent | 7ed62e63e5f8543fed0f4cc3f03eaf4d131316cc (diff) | |
| download | monzero-core-4fcf609942a19fe58021d55b6711de5d2440cd77.tar.gz monzero-core-4fcf609942a19fe58021d55b6711de5d2440cd77.tar.xz monzero-core-4fcf609942a19fe58021d55b6711de5d2440cd77.zip | |
Merge pull request #3186
7ed62e63 cryptonote_protocol: fix std::move usage on different types (moneromooo-monero)
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 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; |
