| Commit message (Collapse) | Author | Age | Files | Lines |
| ... | |
| |\ \
| | |
| | |
| | | |
4e2377995 Change ZMQ-JSON txextra to hex and remove unnecessary base fields (Lee Clagett)
|
| | | | |
|
| |\ \ \
| | | |
| | | |
| | | |
| | | |
| | | | |
98c151ecb Optimize ZMQ-JSON vector reading; GetBlocksFast reads 24%+ faster (Lee Clagett)
60627c9f2 Switch to insitu parsing for ZMQ-JSON; GetBlocksFast reads 13%+ faster (Lee Clagett)
fe96e66eb Fix pruned tx for ZMQ's GetBlocksFast (Lee Clagett)
|
| | | | | |
|
| |\ \ \ \
| | | | |
| | | | |
| | | | | |
921dd8dde Use domain-separated ChaCha20 for in-memory key encryption (Sarang Noether)
|
| | | |_|/
| |/| | |
|
| |\ \ \ \
| |_|/ /
|/| | |
| | | | |
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)
|
| | |/ /
| | |
| | |
| | | |
include all public proof parameters in Schnorr challenges, along with hash function domain separators. Includes new randomized unit tests.
|
| |\ \ \
| | | |
| | | |
| | | | |
67ade8005 Add randomized delay when forwarding txes from i2p/tor -> ipv4/6 (Lee Clagett)
|
| | | | | |
|
| | |/ /
|/| | |
|
| |\ \ \
| | | |
| | | |
| | | | |
8656a8c9f remove double includes (sumogr)
|
| | | | | |
|
| |\ \ \ \
| | | | |
| | | | |
| | | | | |
5ef0607da Update copyright year to 2020 (SomaticFanatic)
|
| | | |_|/
| |/| |
| | | |
| | | | |
Update copyright year to 2020
|
| |\ \ \ \
| | | | |
| | | | |
| | | | | |
15538f7 ByteSlice: Fix persisting ptr to std::moved SSO buffer (Doy-lee)
|
| | |/ / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
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.
|
| |/ / / |
|
| | | | |
|
| |\ \ \
| | | |
| | | |
| | | | |
4ed60b6 Bulletproofs: verification speedup (SarangNoether)
|
| | | | | |
|
| |\ \ \ \
| | | | |
| | | | |
| | | | | |
f8b1480 unit_tests: fix gcc+ warning (sumogr)
|
| | | |/ /
| |/| | |
|
| | |_|/
|/| | |
|
| |\ \ \
| |/ /
|/| |
| | | |
f9441c5 Fixed string_ref usage bug in epee::from_hex::vector (vtnerd)
|
| | |/ |
|
| |/
|
|
|
|
| |
- New flag in NOTIFY_NEW_TRANSACTION to indicate stem mode
- Stem loops detected in tx_pool.cpp
- Embargo timeout for a blackhole attack during stem phase
|
| |\
| |
| |
| | |
e719760 Fix receive order leakage with tx fluffing (vtnerd)
|
| | | |
|
| |\ \
| | |
| | |
| | | |
68a6507 Fixed bug in ZMQ JSON-RPC method field (vtnerd)
|
| | | | |
|
| |\ \ \
| | | |
| | | |
| | | | |
42a7a4d daemon: auto public nodes - cache and prioritize most stable nodes (xiphon)
|
| | |/ / |
|
| |\ \ \
| | | |
| | | |
| | | |
| | | |
| | | | |
81c5943 Remove temporary std::string creation in some hex->bin calls (vtnerd)
5fcc23a Move hex->bin conversion to monero copyright files and with less includes (vtnerd)
3387f0e Reduce template bloat in hex->bin for ZMQ json (vtnerd)
|
| | | | | |
|
| |\ \ \ \
| | | | |
| | | | |
| | | | | |
dbfa4f8 unit_tests: fix missing test names (xiphon)
|
| | | |/ /
| |/| | |
|
| |\ \ \ \
| | | | |
| | | | |
| | | | | |
c61abf8 remove empty statements (shopglobal)
|
| | |/ / /
| | | |
| | | |
| | | | |
Cleaning up a little around the code base.
|
| |\ \ \ \
| | | | |
| | | | |
| | | | | |
0078ce7 wipeable_string: split - treat CR, LF and Tabs as separators (xiphon)
|
| | | | | | |
|
| |\ \ \ \ \
| | | | | |
| | | | | |
| | | | | | |
054b4c7 protocol: request txpool contents when synced (moneromooo-monero)
|
| | | |_|/ /
| |/| | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
A newly synced Alice sends a (typically quite small) list of
txids in the local tpxool to a random peer Bob, who then uses
the existing tx relay system to send Alice any tx in his txpool
which is not in the list Alice sent
|
| | | | | | |
|
| |\ \ \ \ \
| | | | | |
| | | | | |
| | | | | | |
d0641b42 net: fix incorrect less operator for top/i2p addresses (Aaron Hook)
|
| | | |/ / /
| |/| | | |
|
| | |/ / /
|/| | | |
|
| |\ \ \ \
| |_|_|/
|/| | |
| | | | |
0f78b06e Various improvements to the ZMQ JSON-RPC handling: (Lee Clagett)
|
| | |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
- Finding handling function in ZMQ JSON-RPC now uses binary search
- Temporary `std::vector`s in JSON output now use `epee::span` to
prevent allocations.
- Binary -> hex in JSON output no longer allocates temporary buffer
- C++ structs -> JSON skips intermediate DOM creation, and instead
write directly to an output stream.
|
| |\ \ \
| | | |
| | | |
| | | | |
a9bdc6e4 Improved performance for epee serialization: (Lee Clagett)
|