Age | Commit message (Collapse) | Author |
|
|
|
Setting minrelaytxfee to 0 will allow all transactions regardless of fee to enter your mempool until it reaches its size limit. However now that mempool limiting is governed by a separate incrementalrelay fee, it is an unnecessary restriction to prevent a minrelaytxfee of 0.
|
|
Remove GetPriority and ComputePriority. Remove internal machinery for tracking priority in CTxMemPoolEntry.
|
|
This a breaking API change to the prioritisetransaction RPC call which previously required exactly three arguments and now requires exactly two (hash and feeDelta). The function prioritiseTransaction is also updated.
|
|
"startingpriority" and "currentpriority" are no longer returned in the JSON information about a mempool entry. This affects getmempoolancestors, getmempooldescendants, getmempooolentry, and getrawmempool.
|
|
Remove all coin age priority functionality from unit tests and RPC tests.
|
|
Remove -limitfreerelay and always enforce minRelayTxFee in the mempool (except from disconnected blocks)
Remove -relaypriority, the option was only used for the ability to allow free transactions to be relayed regardless of their priority. Both notions no longer apply.
|
|
The prioritisetransaction API can always be used if a transaction needs to be submitted that bypasses minRelayTxFee.
|
|
Unused everywhere now except one test.
|
|
-printpriority output is now changed to only show the fee rate and hash of transactions included in a block by the mining code.
|
|
Remove ability of mining code to fill part of a block with transactions sorted by coin age.
|
|
The RPC calls were already deprecated.
|
|
This removes the option from the wallet to not pay a fee on "small"
transactions which spend "old" inputs.
This code is no longer worth keeping around, as almost all miners
prefer not to include transactions which pay no fee at all.
|
|
75a1093 tests: Fix dangling pwalletMain pointer in wallet tests (Wladimir J. van der Laan)
Tree-SHA512: 7fb6e8385fe7d542f9ecb113a08d675ca9e84907a1939b3a6ad41318fda55bc999b9bc8ffc3f56cd8610ca49d0db982d3c793df7bbcb7eb9638f4483030db6a8
|
|
|
|
864890a [qa] Make import-rescan.py watchonly check reliable (Russell Yanofsky)
Tree-SHA512: ea0e2b1d4fc8f35174c3d575fb751b428daf6ad3aa944fad4e3ddcc9195e4f17051473acabc54203b1d27cca64cf911b737ab92e986c40ef384410652e2dbea1
|
|
30aedcb BIP32 extra test vector (Pieter Wuille)
|
|
dc222f8 Trivial: Rephrase the definition of difficulty in the code. (Karl-Johan Alm)
|
|
ef9f495 Trivial: fix comments referencing AppInit2 (Marko Bencun)
|
|
f81f0d0 Update sendfrom RPC help to correct coin selection misconception (Russell Yanofsky)
|
|
|
|
|
|
It was refactored into multiple functions in
0cc8b6bc44bea29e24fa4e13d8a9bbe4f1483680.
|
|
Send payments during the test from a different node than the node generating
keys to be imported, so the spending node doesn't create transactions that
inadvertently involve (spend funds from) the imported keys.
Fixes #9826
|
|
|
|
9829c54 build: force a c++ standard to be specified (Cory Fields)
|
|
3333ad0 qa: Set correct path for binaries in rpc tests (MarcoFalke)
|
|
3f95a80 Fix docstrings in qa tests (John Newbery)
|
|
c578408 Add exclude option to rpc-tests.py (John Newbery)
|
|
This commit fixes the module-level docstrings for the tests and helper
modules in qa. Many of these tests were uncommented previously - this
commit ensures that every test case has at least a minimum level of
commenting.
|
|
205830a build: add --enable-werror option (Cory Fields)
b602fe0 build: warn about variable length arrays (Cory Fields)
|
|
fa4cd2e qa: Check return code when stopping nodes (MarcoFalke)
|
|
874c736 Fix pruning test broken by 2 hour manual prune window (Russell Yanofsky)
|
|
This turns some compiler warnings into errors. Useful for c-i.
|
|
This includes work by jnewbery
|
|
Newer compilers may switch to newer standards by default. For example, gcc6
uses std=gnu++14 by default.
|
|
9949ebf [Trivial] Remove incorrect help message from gettxoutproof() (John Newbery)
|
|
bc8fd12 Remove harmless read of unusued priority estimates (Alex Morcos)
|
|
successful
e2e2f4c Return errors from importmulti if complete rescans are not successful (Russell Yanofsky)
|
|
eaea2bb Removed redundant parameter from mempool.PrioritiseTransaction (gubatron)
|
|
3b4dd2a Add seed.btc.petertodd.org to mainnet DNS seeds (Peter Todd)
|
|
a87d02a use EXIT_ codes instead of magic numbers (Marko Bencun)
|
|
|
|
(Also made the `const uint256 hash` parameter a `const uint256& hash` as suggested by @sdaftuar)
|
|
851f6a3 [qa][doc] Correct rpc test options in readme (fanquake)
41e7219 [trivial] Add tests_config.ini to .gitignore (fanquake)
|
|
Regression happened in 91fb506 Add two hour buffer to manual pruning.
|
|
|
|
b471daf Adddress nits, use asyncio signal handling, create_task (Bob McElrath)
4bb7d1b Add python version checks and 3.4 example (Bob McElrath)
5406d51 Rewrite to not use Polling wrapper for asyncio, link to python2.7 example (Bob McElrath)
5ea5368 ZMQ example using python3 and asyncio (Bob McElrath)
|
|
|
|
056aba2 Remove fallbacks for boost_filesystem < v3 (Wladimir J. van der Laan)
|