aboutsummaryrefslogtreecommitdiff
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | Fix pruned tx for ZMQ's GetBlocksFastLee Clagett2020-08-141-1/+1
| | | | |
* | | | | Merge pull request #6593Alexander Blair2020-08-161-0/+1
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | 6f5411d30 tests: fix missing error on missing python entry point (moneromooo-monero) c6dc2850c python-rpc: add missing sync_txpool python entry point (moneromooo-monero)
| * | | | | tests: fix missing error on missing python entry pointmoneromooo-monero2020-05-271-0/+1
| | | | | |
* | | | | | Merge pull request #6493Alexander Blair2020-08-162-0/+74
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | 921dd8dde Use domain-separated ChaCha20 for in-memory key encryption (Sarang Noether)
| * | | | | | Use domain-separated ChaCha20 for in-memory key encryptionSarang Noether2020-08-092-0/+74
| | |_|_|/ / | |/| | | |
* | | | | | Merge pull request #6337Alexander Blair2020-08-163-0/+479
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | a11ec4ac1 Support for supercop ASM in wallet, and benchmark for supercop (Lee Clagett)
| * | | | | | Support for supercop ASM in wallet, and benchmark for supercopLee Clagett2020-05-163-0/+479
| |/ / / / /
* | | | | | Merge pull request #6329Alexander Blair2020-08-163-5/+165
|\ \ \ \ \ \ | |_|_|/ / / |/| | | | | | | | | | | 6bfcd3101 Updates InProofV1, OutProofV1, and ReserveProofV1 to new V2 variants that include all public proof parameters in Schnorr challenges, along with hash function domain separators. Includes new randomized unit tests. (Sarang Noether)
| * | | | | Updates InProofV1, OutProofV1, and ReserveProofV1 to new V2 variants that ↵Sarang Noether2020-08-093-5/+165
| |/ / / / | | | | | | | | | | | | | | | include all public proof parameters in Schnorr challenges, along with hash function domain separators. Includes new randomized unit tests.
* | | | | Merge pull request #6354Alexander Blair2020-08-091-8/+246
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | 67ade8005 Add randomized delay when forwarding txes from i2p/tor -> ipv4/6 (Lee Clagett)
| * | | | | Add randomized delay when forwarding txes from i2p/tor -> ipv4/6Lee Clagett2020-05-151-8/+246
| | | | | |
* | | | | | Adding ZMQ/Pub support for txpool_add and chain_main eventsLee Clagett2020-05-044-8/+776
| |/ / / / |/| | | |
* | | | | Merge pull request #6516Alexander Blair2020-07-192-3/+0
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | 8656a8c9f remove double includes (sumogr)
| * | | | | remove double includessumogr2020-05-112-3/+0
| | | | | |
* | | | | | Merge pull request #6512Alexander Blair2020-07-19181-181/+181
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | 5ef0607da Update copyright year to 2020 (SomaticFanatic)
| * | | | | | Update copyright year to 2020SomaticFanatic2020-05-06181-181/+181
| | |_|/ / / | |/| | | | | | | | | | | | | | | | Update copyright year to 2020
* | | | | | Merge pull request #6497Alexander Blair2020-07-192-2/+2
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | db8563cb performance_tests: some windows fixes (moneromooo-monero)
| * | | | | | performance_tests: some windows fixesmoneromooo-monero2020-05-032-2/+2
| | |_|/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Too many iterations cause std::bad_alloc for the timings vector, and the micro prefix displays as some other character, so use u. Reported by iDunk
* | | | | | Merge pull request #6599luigi11112020-07-081-0/+11
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 6e4a55b rpc: fix relay_tx error return mixup (moneromooo-monero) 9b86e14 functional_tests: add simple relay_tx test (moneromooo-monero)
| * | | | | | functional_tests: add simple relay_tx testmoneromooo-monero2020-05-281-0/+11
| | |/ / / / | |/| | | |
* | | | | | Merge pull request #6559luigi11112020-07-081-0/+23
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | 15538f7 ByteSlice: Fix persisting ptr to std::moved SSO buffer (Doy-lee)
| * | | | | | ByteSlice: Fix persisting ptr to std::moved SSO bufferDoyle2020-05-201-0/+23
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The Bug: 1. Construct `byte_slice.portion_` with `epee::span(buffer)` which copies a pointer to the SSO buffer to `byte_slice.portion_` 2. It constructs `byte_slice.storage_` with `std::move(buffer)` (normally this swap pointers, but SSO means a memcpy and clear on the original SSO buffer) 3. `slice.data()` returns a pointer from `slice.portion_` that points to the original SSO cleared buffer, `slice.storage_` has the actual string.
* | | | | | Merge pull request #6656luigi11112020-06-198-18/+93
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | bde7f1c fuzz_tests: fix init check in oss-fuzz mode (moneromooo-monero) c4b7420 Do not use PIE with OSS-Fuzz (moneromooo-monero) c4df8b1 fix leaks in fuzz tests (moneromooo-monero) 38ca1bb fuzz_tests: add a tx extra fuzz test (moneromooo-monero)
| * | | | | | fuzz_tests: fix init check in oss-fuzz modemoneromooo-monero2020-06-141-1/+1
| | | | | | |
| * | | | | | fix leaks in fuzz testsmoneromooo-monero2020-06-144-17/+34
| | | | | | |
| * | | | | | fuzz_tests: add a tx extra fuzz testmoneromooo-monero2020-06-144-0/+58
| | |_|_|_|/ | |/| | | |
* / | | | | repo: update donation fund addressselsta2020-06-093-9/+9
|/ / / / /
* | | | | Merge pull request #6522luigi11112020-06-081-0/+31
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | 29e563b Fixed bugs for take_slice and byte_stream->byte_slice (vtnerd)
| * | | | | Fixed bugs for take_slice and byte_stream->byte_sliceLee Clagett2020-05-121-0/+31
| |/ / / /
* | | | / Fix boost <1.60 compilation and fix boost 1.73+ warningsLee Clagett2020-05-311-2/+3
| |_|_|/ |/| | |
* | | | Merge pull request #6535luigi11112020-05-2715-538/+226
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | 81773f5 fuzz_tests: refactor and add OSS-Fuzz compatibility (moneromooo-monero) cb4edc1 cmake: ASAN and PIE don't mix (moneromooo-monero)
| * | | | fuzz_tests: refactor and add OSS-Fuzz compatibilitymoneromooo-monero2020-05-1515-538/+226
| |/ / /
* / / / build: fix boost 1.73 compatibilityselsta2020-05-141-2/+2
|/ / /
* | | Merge pull request #6477luigi11112020-05-063-65/+25
|\ \ \ | | | | | | | | | | | | afe5a55 Revert functional test changes in babf25d and 5715460 (vtnerd)
| * | | Revert functional test changes in babf25d2e and 571546067Lee Clagett2020-04-243-65/+25
| |/ /
* | | Add byte_stream for zero-copy serialization, and add support in ZMQ-JSON.Lee Clagett2020-04-112-5/+259
| | |
* | | Merge pull request #6451luigi11112020-05-023-0/+11
|\ \ \ | | | | | | | | | | | | 4ed60b6 Bulletproofs: verification speedup (SarangNoether)
| * | | Bulletproofs: verification speedupSarang Noether2020-04-143-0/+11
| | | |
* | | | Merge pull request #6460luigi11112020-05-011-0/+4
|\ \ \ \ | | | | | | | | | | | | | | | f8b1480 unit_tests: fix gcc+ warning (sumogr)
| * | | | unit_tests: fix gcc+ warningSumo Gr2020-04-181-0/+4
| | |_|/ | |/| |
* | | | Merge pull request #6446luigi11112020-05-014-57/+43
|\ \ \ \ | | | | | | | | | | | | | | | e509ede trezor: adapt to new passphrase mechanism (ph4r05)
| * | | | trezor: adapt to new passphrase mechanismDusan Klinec2020-04-274-57/+43
| | |/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - choice where to enter passphrase is now made on the host - use wipeable string in the comm stack - wipe passphrase memory - protocol optimizations, prepare for new firmware version - minor fixes and improvements - tests fixes, HF12 support
* | | | Use byte_slice for sending zmq messages - removes data copy within zmqLee Clagett2020-04-031-0/+39
| |_|/ |/| |
* | | Merge pull request #6445luigi11112020-04-213-25/+65
|\ \ \ | | | | | | | | | | | | | | | | 5715460 Always reject duplicate key-images from second txid (vtnerd) babf25d Allow unrestricted rpc calls to get full txpool info (vtnerd)
| * | | Always reject duplicate key-images from second txidLee Clagett2020-03-301-13/+39
| | | |
| * | | Allow unrestricted rpc calls to get full txpool infoLee Clagett2020-03-302-12/+26
| | |/ | |/|
* | | Merge pull request #6433luigi11112020-04-212-1/+5
|\ \ \ | | | | | | | | | | | | | | | | 7326b69 functional_tests: ensure signatures never reuse a timestamp (moneromooo-monero) 082dd2c functional_tests: ensure signed timestamps are fresh (moneromooo-monero)
| * | | functional_tests: ensure signatures never reuse a timestampmoneromooo-monero2020-04-061-0/+2
| | | |
| * | | functional_tests: ensure signed timestamps are freshmoneromooo-monero2020-04-061-1/+3
| | | | | | | | | | | | | | | | This fixes a test failure now that timestamps are more constrained
* | | | Merge pull request #6359luigi11112020-04-211-0/+3
|\ \ \ \ | | | | | | | | | | | | | | | f9441c5 Fixed string_ref usage bug in epee::from_hex::vector (vtnerd)