| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| | * | | Refresh blockchain checkpoints | Ross Nicoll | 2021-08-15 | 1 | -8/+9 | |
| | | | | ||||||
| * | | | Merge pull request #2450 from xanimo/1.14.4-txn_doublespend | Patrick Lodder | 2021-08-14 | 2 | -26/+26 | |
| |\ \ \ | |/ / |/| | | qa: txn_dblspend - fix arithmetic | |||||
| | * | | fix arithmetic; adds to standard testing | Dakoda Greaves | 2021-08-13 | 2 | -26/+26 | |
| | |/ | ||||||
| * | | Merge pull request #2451 from patricklodder/1.14.4-feefilter-rpc | Ross Nicoll | 2021-08-14 | 3 | -0/+5 | |
| |\ \ | | | | | | | rpc: add feefilter to peers from getpeerinfo | |||||
| | * | | rpc: add feefilter to peers from getpeerinfo | Patrick Lodder | 2021-08-14 | 3 | -0/+5 | |
| | |/ | | | | | | | | | | | Exposes information about the feefilter the peer sets to us, so that we can make better informed decisions when a transaction does not get relayed. | |||||
| * | | Merge pull request #2448 from patricklodder/1.14.4-fix-acceptblock | Ross Nicoll | 2021-08-14 | 3 | -7/+7 | |
| |\ \ | | | | | | | qa: fix p2p-acceptblock | |||||
| | * | | qa: fix p2p-acceptblock | Patrick Lodder | 2021-08-13 | 3 | -7/+7 | |
| | |/ | | | | | | | | | | | | | | | | | | | | | | | This test failed because the sheer number of blocks required to trigger the max length of a fork we'd keep, exceed the v4 fork height on regtest. - Adapted the blocktools.py miner to mine 0x00620004 blocks as done elsewhere too (be it suboptimal, but at least consistent) - Adapted the test to work with 1440 blocks (Dogecoin limit) instead of 288 (Bitcoin limit) - Made p2p-acceptblock a standard test instead of an extended test | |||||
| * | | Merge pull request #2447 from patricklodder/1.14.4-fix-qt-str-trans | Ross Nicoll | 2021-08-14 | 6 | -23/+23 | |
| |\ \ | |/ |/| | qt: translate all user-exposed strings | |||||
| | * | qt: translate more user-exposed strings | chromatic | 2021-08-14 | 5 | -7/+7 | |
| | | | ||||||
| | * | fix typo | Patrick Lodder | 2021-08-13 | 1 | -2/+2 | |
| | | | ||||||
| | * | qt: translate all user-exposed strings | Patrick Lodder | 2021-08-11 | 2 | -16/+16 | |
| | | | ||||||
| * | | Merge pull request #2437 from michilumin/1.14.4-mintxfee | Ross Nicoll | 2021-08-12 | 1 | -0/+7 | |
| |\ \ | | | | | | | Adding startup logic where -paytxfee if lower than default, mintxfee is overridden | |||||
| | * | | Adding startup logic where -paytxfee if lower than default, implies ↵ | michilumin | 2021-08-11 | 1 | -0/+7 | |
| | |/ | | | | | | | -mintxfee is also lowered. | |||||
| * | | Merge pull request #2440 from michilumin/1.14.4-fees-reduced-minimums | Ross Nicoll | 2021-08-12 | 7 | -8/+11 | |
| |\ \ | |/ |/| | fees: Reduce minimum relay fee to 0.001 DOGE | |||||
| | * | fees: Reduce minimum relay fee to 0.001 DOGE, final change from tx to 0.01 | Michi Lumin | 2021-08-11 | 7 | -8/+11 | |
| |/ | ||||||
| * | Merge pull request #2439 from rnicoll/1.14.4-dust-limit-type-alt | Ross Nicoll | 2021-08-09 | 6 | -9/+10 | |
| |\ | | | | | Use CAmount for amounts | |||||
| | * | Use CAmount for constant amounts too | Ross Nicoll | 2021-08-08 | 3 | -5/+5 | |
| | | | ||||||
| | * | Use CAmount for amounts | Ross Nicoll | 2021-08-08 | 4 | -4/+5 | |
| | | | | | | | | | | | | | | | | | | | | | Use CAmount rather than unsigned int for amounts for consistency with other fee rate amounts. This does change the type from unsigned int to unsigned int64, and while it is unlikely anyone would need a dust limit higher than unsigned int, again this ensures the theoretical maximum is in line with other rates. | |||||
| * | | Merge pull request #2417 from patricklodder/1.14-serialize-getheaders | Patrick Lodder | 2021-08-09 | 3 | -6/+41 | |
| |\ \ | |/ |/| | Reduce getheaders spam by serializing getheader requests per peer | |||||
| | * | Reduce getheaders spam by serializing getheader requests per peer | Patrick Lodder | 2021-07-22 | 3 | -6/+41 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | Introduces a counter for getheader requests that have been sent to a peer but are pending response, reducing the number of parallel requests a node pushes out to its peers when needing to sync large amounts of headers. All getheader requests are serialized during initial sync, except when a non-connecting header is received, allowing the node to resolve issues with peers sending faulty blocks using the DoS mechanism, and when we get an inv for a block that we do not know, because it's possible we're only connected to legacy nodes that do not implement header announcement properly. | |||||
| * | | Merge pull request #2348 from patricklodder/1.14-cfg-dust-limit | Ross Nicoll | 2021-08-05 | 7 | -2/+119 | |
| |\ \ | | | | | | | [fees] introduce configurable hard dust limit | |||||
| | * | | [fees] Express policies in COIN instead of Koinu | Patrick Lodder | 2021-08-05 | 1 | -2/+2 | |
| | | | | ||||||
| | * | | [fees] introduce configurable hard dust limit | Patrick Lodder | 2021-08-05 | 7 | -1/+118 | |
| |/ / | | | | | | | Co-authored-by: Ross Nicoll <[email protected]> | |||||
| * | | Merge pull request #2415 from rnicoll/1.14.4-rbf-fee | Patrick Lodder | 2021-08-04 | 5 | -43/+54 | |
| |\ \ | | | | | | | Reduce BIP125 replace by fee increment value | |||||
| | * | | consensus: Fix a rare crash bug | Ross Nicoll | 2021-08-04 | 1 | -1/+5 | |
| | | | | | | | | | | | | | | | | Fix a rare crash bug where no best chain can be activated, and therefore when trying to find the height of the best chain via the last block triggers a null pointer dereference. | |||||
| | * | | p2p: Reduce BIP125 replace by fee increment value | Michi Lumin | 2021-08-04 | 4 | -42/+49 | |
| |/ / | ||||||
| * | | Merge pull request #2434 from patricklodder/1.14-activatebestchain-shutdown-fix | Ross Nicoll | 2021-08-04 | 1 | -3/+9 | |
| |\ \ | | | | | | | bugfix: break ActivateBestChain() differently on shutdown | |||||
| | * | | bugfix: break ActivateBestChain() differently on shutdown | Patrick Lodder | 2021-08-04 | 1 | -3/+9 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | Moves the break in ActivateBestChain() when a node is being shut down from the beginning of the loop block to the end, allowing pindexNewTip to be populated with chainActive.Tip() rather than its initial NULL value. Solves issues when shutting down nodes while inside the ActivateBestChain loop. | |||||
| * | | | Merge pull request #2428 from zachlatta/1.14.4-nixos-build-instructions | Ross Nicoll | 2021-08-03 | 2 | -0/+40 | |
| |\ \ \ | |/ / |/| | | Add build and setup instructions for NixOS | |||||
| | * | | Move shell.nix contents into separate file | Zach Latta | 2021-08-03 | 2 | -23/+19 | |
| | | | | ||||||
| | * | | Add build and setup instructions for NixOS | Zach Latta | 2021-07-30 | 1 | -0/+44 | |
| | | | | ||||||
| * | | | tests: mempool_packages.py (#2433) | xanimo | 2021-08-01 | 1 | -1/+1 | |
| | | | | | | | | | | * Bump fee to 1.0000 from 0.0001 to fix insufficient priority error | |||||
| * | | | Merge pull request #2368 from michilumin/1.14.4-fees | Patrick Lodder | 2021-07-31 | 17 | -70/+137 | |
| |\ \ \ | |/ / |/| | | 1.14.4 fees backend improvements | |||||
| | * | | Initial back end framework to separate wallet and relay fees + dust. | Michi Lumin | 2021-07-30 | 17 | -70/+137 | |
| |/ / | ||||||
| * | | Merge pull request #2426 from xanimo/1.14.4-qa | Patrick Lodder | 2021-07-29 | 1 | -6/+7 | |
| |\ \ | | | | | | | update qa/README.md to reflect working installation instructions | |||||
| | * | | update qa/README.md to reflect working installation instructions | Dakoda Greaves | 2021-07-28 | 1 | -6/+7 | |
| |/ / | ||||||
| * | | Merge pull request #2423 from patricklodder/1.14-codeql-reduce-trigger | Ross Nicoll | 2021-07-26 | 1 | -0/+4 | |
| |\ \ | | | | | | | [qa] reduce CodeQL triggers to exclude non-compiled code | |||||
| | * | | [qa] reduce CodeQL triggers to exclude non-compiled code | Patrick Lodder | 2021-07-25 | 1 | -0/+4 | |
| | | | | | | | | | | | | | | | | contrib, doc, share and qa do not compile production code, skip CodeQL on PRs to save everyone time and GitHub some cpu ticks. | |||||
| * | | | Merge pull request #2422 from rnicoll/1.14.4-rbf-fee-test | Patrick Lodder | 2021-07-25 | 2 | -47/+48 | |
| |\ \ \ | | | | | | | | | Fixup replace-by-fee qa test values and now runs this test by default on CI | |||||
| | * | | | tests: Fix replace-by-fee values for Dogecoin | Ross Nicoll | 2021-07-25 | 2 | -47/+48 | |
| | | | | | ||||||
| * | | | | Merge pull request #2249 from rnicoll/1.14-fix-magic-numbers | Patrick Lodder | 2021-07-25 | 3 | -38/+48 | |
| |\ \ \ \ | |_|/ / |/| | | | 1.14 fix magic numbers | |||||
| | * | | | Trivial: Fix Magic Numbers in key and pubkey - fixes #1968 | geekwisdom | 2021-07-25 | 3 | -38/+48 | |
| | |/ / | ||||||
| * | | | Merge pull request #2236 from sabotagebeats/fix/issues/2149 | Patrick Lodder | 2021-07-24 | 7 | -53/+88 | |
| |\ \ \ | |/ / |/| | | Utils and libraries: Update ZMQ to 4.3.4 | |||||
| | * | | Utils and libraries: Update ZMQ to 4.3.4 | sabotagebeats | 2021-07-18 | 7 | -53/+88 | |
| | | | | ||||||
| * | | | Merge pull request #1941 from elybin/fixing-indonesian-translation | Ross Nicoll | 2021-07-24 | 1 | -237/+1896 | |
| |\ \ \ | | | | | | | | | Fixing indonesian (id_ID) translation | |||||
| | * | | | Fixing few missed words and making translation more casual | Khakim Hudaya | 2021-07-15 | 1 | -62/+58 | |
| | | | | | ||||||
| | * | | | Correct XML errors | Ross Nicoll | 2021-07-15 | 1 | -2/+3 | |
| | | | | | ||||||
| | * | | | Fixing indonesian translation | Khakim Hudaya | 2021-07-15 | 1 | -231/+1893 | |
| | | | | | ||||||
| * | | | | Merge pull request #2420 from nformant1/nformant1-patch-1 | Patrick Lodder | 2021-07-23 | 1 | -1/+1 | |
| |\ \ \ \ | | | | | | | | | | | Fix RPC port documentation in RPC help | |||||
| | * | | | | Update server.cpp | nformant | 2021-07-22 | 1 | -1/+1 | |
| | | |_|/ | |/| | | | | | | Changed RPC port from 8332 (BTC) to 22555 (Dogecoin) | |||||