| Commit message (Collapse) | Author | Age | Files | Lines |
| ... | |
| | | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Bug was introduced in c069c04ede338929c50297558fee15192aa0f67c, before this txpool additions were not notified on block addition
When receiving blocks with previously unknown conditions, miner data was sent first, but txpool add events for already-added transactions in previous block were sent afterward. Miners would then include already-mined transactions in their new templates due to receiving the mistimed txpool add event.
The fix is to send miner notifications AFTER txpool events are sent, and before normal block notifications are sent (for mining switch speed purposes)
Fixes c069c04ede338929c50297558fee15192aa0f67c / #9135
Fixes dfee15eee18a97be5a8fb9822527f98ebd1b33e9 / #7891
|
| |\ \ \ \ \
| | | | | |
| | | | | |
| | | | | | |
dd82d28 removing lza_menace seed nodes (lza_menace)
|
| | | |_|_|/
| |/| | | |
|
| |\ \ \ \ \
| | | | | |
| | | | | |
| | | | | | |
2879885 p2p: Improved peer selection with /24 subnet deduplication to disadvantage 'spy nodes' [v0.18] (rbrunner7)
|
| | |/ / / /
| | | | |
| | | | |
| | | | | |
'spy nodes' [v0.18]
|
| |/ / / / |
|
| |\ \ \ \
| | | | |
| | | | |
| | | | | |
f292444 remove 66.85.74.134 as seed node (Gingeropolous)
|
| | | |/ /
| |/| |
| | | | |
remove 66.85.74.134 as seed node. bastards doubled the price of the server.
|
| |\ \ \ \
| | | | |
| | | | |
| | | | | |
00e4faf cryptonote_core: `--dns-versions-check` is deprecated (nahuhh)
|
| | | |/ /
| |/| | |
|
| |\ \ \ \
| |/ / /
|/| | |
| | | | |
751061c wallet_rpc_server: allow creating more than 64 addresses at once (moneromooo-monero)
|
| | |/ /
| | |
| | |
| | |
| | | |
it's too low a limit (at least one person mentioned having to
call create_address in a loop due to it)
|
| |\ \ \
| | | |
| | | |
| | | | |
f921431 checkpoints: update to a recent block height (selsta)
|
| | | | | |
|
| |/ / / |
|
| |\ \ \
| | | |
| | | |
| | | | |
32f701b build: prepare v0.18.4.2 (selsta)
|
| | | | | |
|
| |/ / /
| | |
| | |
| | |
| | |
| | |
| | | |
Rings for outgoing transactions are stored within the scanning code since the last hardfork,
so this code is largely unneccessary now.
Co-authored-by: j-berman <justinberman@protonmail.com>
|
| |/ / |
|
| |\ \
| | |
| | |
| | | |
45152f9 rpc: return error correctly on bad key image string (jeffro256)
|
| | | |
| | |
| | |
| | |
| | |
| | | |
Because of the missing `return` statement, the status is set to "OK" later on in the method when it shouldn't be.
Thank you to ADA Logics and the MAGIC Monero Fund for reporting this!
|
| |\ \ \
| | | |
| | | |
| | | | |
bec90df add do_not_relay option to submit_multisig_main command in simplewallet (SNeedlewoods)
|
| | |/ / |
|
| |/ /
| |
| |
| |
| |
| |
| | |
If `crypto::cn_slow_hash()` is called with `variant=1` and an input length of less thab 43 bytes, it triggers a program exit.
This checks first and throws an exception instead.
Thank you to ADA Logics and the MAGIC Monero Fund for reporting this!
|
| |\ \
| | |
| | |
| | | |
9002681 Add new dynamic fees to ZMQ (Lee Clagett)
|
| | | | |
|
| |\ \ \
| | | |
| | | |
| | | | |
b96af8e build: prepare v0.18.4.1 (selsta)
|
| | |/ / |
|
| |\ \ \
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
1da19da wallet: refactor subaddress expansion & add to transfer test (jeffro256)
e23d51b wallet: improve lookahead logic & make rpc persistent (Justin Berman)
678f5da wallet: create set_subaddress_lookahead wallet rpc endpoint (benevanoff)
8f5a7b0 wallet: ensure subaddress keys table is at least size of requested lookahead (benevanoff)
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | |/ / |
|
| |\ \ \
| | | |
| | | |
| | | | |
e0df82e simplewallet: respect `do-not-relay` in `sweep_single` (hinto.janai)
|
| | | | | |
|
| |\ \ \ \
| | | | |
| | | | |
| | | | | |
ac22479 Add is_same_host check to p2p (Lee *!* Clagett)
|
| | | |/ /
| |/| | |
|
| | | | | |
|
| |\ \ \ \
| | | | |
| | | | |
| | | | |
| | | | | |
8375edf wallet:set refresh interval to default when hitting tip of chain (tzadiko)
22d2d53 wallet: fix monero-wallet-rpc ignoring calls during sync (tzadiko)
|
| | | | | | |
|
| | |/ / / |
|
| |/ / / |
|
| | | | |
|
| | |/
|/| |
|
| |\ \
| | |
| | |
| | | |
97e1a49dd checkpoints: update to a recent block height (selsta)
|
| | | | |
|
| | | | |
|
| | | | |
|
| |\ \ \
| | | |
| | | |
| | | | |
c7f01e57f Blockchain: remove skip for pruned txs in `check_tx_inputs()` (jeffro256)
|
| | | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
I can't see how this would trigger in the current codebase, so it's not a *current* safety issue,
but I can very well see it becoming on in the future if downstream code doesn't handle the passing
of pruned transactions correctly. I think the safe/good choice would be to remove this skip now
that all transactions that pass into the mempool are supposed to be unpruned. And for all in-block
txs, `check_tx_inputs()` isn't called for checkpointed blocks, and we sync pruned blocks only if
syncing checkpointed blocks.
|