Age | Commit message (Collapse) | Author |
|
|
|
d2b88f9 Move orphan-conflict removal from main logic into a callback (Matt Corallo)
97e2802 Erase orphans per-transaction instead of per-block (Matt Corallo)
ec4525c Move orphan processing to ActivateBestChain (Matt Corallo)
|
|
ca8549d Always drop the least preferred HB peer when adding a new one. (Gregory Maxwell)
|
|
This makes the orphan map a part of net-processing logic instead
of main logic.
|
|
918b126 fix CreateTransaction error messages (instagibbs)
|
|
f004e67 Minor change to comment above new NODE_WITNESS service flag to keep it consitent with existing comment structure. Helps with readability. (Greg Walker)
|
|
67c6326 Send tip change notification from invalidateblock (Russell Yanofsky)
|
|
a33b169 Do not fully sort all nodes for addr relay (Pieter Wuille)
|
|
4512550 Remove unnecessary calls to CheckFinalTx (Jonas Schnelli)
|
|
2e44893 Move -salvagewallet, -zap(wtx) to where they belong (Jonas Schnelli)
|
|
240189b add testcases for getrawtransaction (John Newbery)
ce2bb23 getrawtransaction should take a bool for verbose (jnewbery)
|
|
consitent with existing comment structure. Helps with readability.
|
|
|
|
|
|
1260c11 Mention the new network toggle functionality in the tooltip. (Pavel Janík)
|
|
Make sure that the count is a zero modulo the new mask before
scaling, otherwise the next time until a measure triggers
will take only 1/2 as long as accounted for. This caused
the 'min time' to be potentially off by as much as 100%.
|
|
4231032 [Qt] Clean up and fix coincontrol tree widget handling (Wladimir J. van der Laan)
76af4eb [Qt] fix coincontrol sort issue (Jonas Schnelli)
|
|
When a BIP152 HB-mode peer is in the least preferred position and
disconnects, they will not be by ForNode on the next loop. They
will continue to sit in that position and prevent deactivating
HB mode for peers that are still connected.
There is no reason for them to stay in the list if already gone,
so drop the first element unconditionally if there are too many.
Fixes issue #9163.
|
|
037159c Remove block-request logic from INV message processing (Matt Corallo)
3451203 [qa] Respond to getheaders and do not assume a getdata on inv (Matt Corallo)
d768f15 [qa] Make comptool push blocks instead of relying on inv-fetch (mrbandrews)
|
|
7451cf5 Allow bitcoin-tx to parse partial transactions (jnewbery)
|
|
fa7cc5a Set DEFAULT_LIMITFREERELAY = 0 kB/minute (MarcoFalke)
|
|
is complete
4662553 net: don't send feefilter messages before the version handshake is complete (Cory Fields)
|
|
- Do sorting for date, amount and confirmations column as longlong, not
unsigned longlong.
- Use `UserRole` to store our own data. This makes it treated as
ancillary data prevents it from being displayed.
- Get rid of `getMappedColumn` `strPad` - these are no longer necessary.
- Get rid of hidden `_INT64` columns.
- Start enumeration from 0 (otherwise values are undefined).
|
|
|
|
|
|
|
|
|
|
12519bf test: Fix use-after-free in scheduler tests (Wladimir J. van der Laan)
|
|
Make a copy of the boost time-point to wait for, otherwise the head of
the queue may be deleted by another thread while this one is waiting,
while the boost function still has a reference to it.
Although this problem is in non-test code, this is not an actual problem
outside of the tests because we use the thread scheduler with only one
service thread, so there will never be threads fighting at the head of
the queue.
The old boost fallback escapes this problem because it passes a scalar
value to wait_until instead of a const object reference.
Found by running the tests in LLVM-4.0-master asan.
|
|
|
|
|
|
This further decouples "main" and "net" processing logic by moving
orphan processing out of the chain-connecting cs_main lock and
into its own cs_main lock, beside all of the other chain callbacks.
Once further decoupling of net and main processing logic occurs,
orphan handing should move to its own lock, out of cs_main.
Note that this will introduce a race if there are any cases where
we assume the orphan map to be consistent with the current chain
tip, however I am confident there is no such case (ATMP will fail
without DoS score in all such cases).
|
|
|
|
ae22357 Replace CValidationState param in ProcessNewBlock with BlockChecked (Matt Corallo)
7c98ce5 Remove pfrom parameter from ProcessNewBlock (Matt Corallo)
e2e069d Revert "RPC: Give more details when "generate" fails" (Matt Corallo)
|
|
5f274a1 log block size and weight correctly. (jnewbery)
|
|
07ede5d update comments for tx weight (Brian Deery)
|
|
79f755d Unset fImporting for loading mempool (Alex Morcos)
|
|
079142b fNetworkActive is not protected by a lock, use an atomic (Jonas Schnelli)
|
|
20c3215 credit values are CAmount (Gregory Sanders)
|
|
|
|
b74ff5c Bugfix: Correctly replace generated headers and fail cleanly (Luke Dashjr)
|
|
f734505 Make strWalletFile const (Jonas Schnelli)
|
|
ec34648 [trivial] Fix hungarian variable name (Russell Yanofsky)
|
|
Follow up to comment https://github.com/bitcoin/bitcoin/pull/9058#discussion_r87676593
|
|
|
|
|
|
|
|
|
|
|
|
Also removes generation of headers for *.raw files in test_bitcoin (none exist anymore)
|