aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-02-17Various review markups for rpc-tests.py improvementsJohn Newbery
2017-02-06Refactor rpc-tests.pyJohn Newbery
- add main() - remove global variables
2017-02-06Improve rpc-tests.py argumentsJohn Newbery
A few miscellaneous improvements to rpc-tests.py command line arguments: - make all arguments start with double dash for consistency - improve help text and output - add nozmq argument to explicitly exclude the ZMQ tests - change 'parallel' to 'jobs'
2017-02-06Use argparse in rpc_tests.pyJohn Newbery
This commit replaces the roll-your-own argument parsing in rpc_tests.py with Python's standard library argparse.
2017-01-31Use configparser in rpc-tests.pyJohn Newbery
Remove the use of wildcard imports in rpc-tests.py and replace with configparser.
2017-01-27Merge #9638: qa: Actually test assertions in pruning.pyWladimir J. van der Laan
fab035f qa: Actually test assertions in pruning.py (MarcoFalke)
2017-01-27Merge #9637: [Qt] fix transaction details output-index to reflect vout indexWladimir J. van der Laan
04b8773 [Qt] fix transaction details output-index to reflect vout index (Jonas Schnelli)
2017-01-26qa: Actually test assertions in pruning.pyMarcoFalke
Also refactor to use wrapper for stop_node
2017-01-26[Qt] fix transaction details output-index to reflect vout indexJonas Schnelli
2017-01-26Merge #9519: Exclude RBF replacement txs from fee estimationWladimir J. van der Laan
de1ae32 Exclude RBF txs from fee estimation (Alex Morcos)
2017-01-26Merge #9594: Send final alert message to older peers after connecting.Wladimir J. van der Laan
8ff8d21 Send final alert message to older peers after connecting. (Gregory Maxwell)
2017-01-26Merge #9574: [depends] Fix QT build on OSXWladimir J. van der Laan
c36ec71 depends: qt: disable printer for all platforms, not just osx (Cory Fields)
2017-01-26Merge #9587: Do not shadow local variable named `tx`.Wladimir J. van der Laan
44f2baa Do not shadow local variable named `tx`. (Pavel Janík)
2017-01-26Merge #9613: [wallet] Clarify getbalance help string to explain interaction ↵Wladimir J. van der Laan
with bumpfee 5a00659 [wallet] Clarify getbalance help string to explain interaction with bumpfee (Russell Yanofsky)
2017-01-26Merge #9606: net: Consistently use GetTimeMicros() for inactivity checksWladimir J. van der Laan
99464bc net: Consistently use GetTimeMicros() for inactivity checks (Suhas Daftuar)
2017-01-26Merge #9628: qa: Increase a sync_blocks timeout in pruning.pyMarcoFalke
2f10f06 qa: Increase a sync_blocks timeout in pruning.py (Suhas Daftuar)
2017-01-25qa: Increase a sync_blocks timeout in pruning.pySuhas Daftuar
2017-01-25net: Consistently use GetTimeMicros() for inactivity checksSuhas Daftuar
The use of mocktime in test logic means that comparisons between GetTime() and GetTimeMicros()/1000000 are unreliable since the former can use mocktime values while the latter always gets the system clock; this changes the networking code's inactivity checks to consistently use the system clock for inactivity comparisons. Also remove some hacks from setmocktime() that are no longer needed, now that we're using the system clock for nLastSend and nLastRecv.
2017-01-24Merge #9624: [Trivial] fix logging typo in FlushStateToDisk()Jonas Schnelli
ac9a846 [Trivial] fix logging typo in FlushStateToDisk() (John Newbery)
2017-01-24[Trivial] fix logging typo in FlushStateToDisk()John Newbery
2017-01-24Merge #9617: [Trivial] Update license year range to 2017Wladimir J. van der Laan
be31a2b [Trivial] Update license year range to 2017 (Lauda)
2017-01-24Merge #9371: Notify on removalWladimir J. van der Laan
094e4b3 Better document usage of SyncTransaction (Alex Morcos) 4afbde6 Introduce MemPoolConflictRemovalTracker (Alex Morcos) ff25c32 mempool: add notification for added/removed entries (Wladimir J. van der Laan)
2017-01-24Merge #9588: qt: Use nPowTargetSpacing constantJonas Schnelli
fa4d478 qt: Use nPowTargetSpacing constant (MarcoFalke)
2017-01-23[Trivial] Update license year range to 2017Lauda
The same as #7363.
2017-01-23Better document usage of SyncTransactionAlex Morcos
2017-01-23Introduce MemPoolConflictRemovalTrackerAlex Morcos
Analogue to ConnectTrace that tracks transactions that have been removed from the mempool due to conflicts and then passes them through SyncTransaction at the end of its scope.
2017-01-23mempool: add notification for added/removed entriesWladimir J. van der Laan
Add notification signals to make it possible to subscribe to mempool changes: - NotifyEntryAdded(CTransactionRef)> - NotifyEntryRemoved(CTransactionRef, MemPoolRemovalReason)> Also add a mempool removal reason enumeration, which is passed to the removed notification based on why the transaction was removed from the mempool.
2017-01-23Merge #9596: [bugfix] save feeDelta instead of priorityDelta in DumpMempoolPieter Wuille
bd92f24 [bugfix] save feeDelta instead of priorityDelta in DumpMempool (Alex Morcos)
2017-01-23Merge #9516: Bug-fix: listsinceblock: use fork point as reference for blocks ↵Wladimir J. van der Laan
in reorg'd chains 7ba0a00 Testing: listsinceblock should not use orphan block height. (Karl-Johan Alm) ee5c1ce Bug-fix: listsinceblock: use closest common ancestor when a block hash was provided for a chain that was not the main chain. (Karl-Johan Alm)
2017-01-23[wallet] Clarify getbalance help string to explain interaction with bumpfeeRussell Yanofsky
Documentation change only, no change in behavior.
2017-01-23Merge #9607: Remove redundant semicolons in Python codeWladimir J. van der Laan
5cdf106 Remove redundant semicolons in Python code (practicalswift)
2017-01-23Merge #9511: Don't overwrite validation state with corruption checkWladimir J. van der Laan
116419e Don't overwrite validation state with corruption check (Alex Morcos)
2017-01-23Merge #9583: Move wallet callbacks into cs_main (this effectively reverts #7946)Wladimir J. van der Laan
9899893 Move wallet callbacks into cs_main (this effectively reverts #7946) (Matt Corallo)
2017-01-22Merge #9610: [Trivial] Grammar and typo correction (laudaa)MarcoFalke
5c66d41 [Trivial] Grammar and typo correction (Lauda)
2017-01-22[Trivial] Grammar and typo correctionLauda
Minor corrections in src\test\* .
2017-01-22Merge #9554: [test] Avoid potential NULL pointer dereference in ↵MarcoFalke
addrman_tests.cpp afab9f4 [test] Avoid potential NULL pointer dereference in addrman_tests.cpp (practicalswift)
2017-01-20Remove redundant semicolons in Python codepracticalswift
2017-01-20Exclude RBF txs from fee estimationAlex Morcos
2017-01-20qt: Periodic translation updateWladimir J. van der Laan
2017-01-20trivial: squash missing field 'argNames' initializer warning in qt testsWladimir J. van der Laan
The additional initializer is for the named arguments, which are unused in the test (and unfilled global fields will be initialized to 0 anyhow), so this is a no-op apart from the warning.
2017-01-20Merge #9377: fundrawtransaction: Keep change-output keys by default, make it ↵Wladimir J. van der Laan
optional c9f3062 Add fundrawtransactions new reserveChangeKey option to the release notes (Jonas Schnelli) 9eb325d [QA] Add test for fundrawtransactions new reserveChangeKey option (Jonas Schnelli) 9aa4e6a [Wallet] Add an option to keep the change address key, true by default (Jonas Schnelli)
2017-01-20Do not shadow local variable named `tx`.Pavel Janík
2017-01-20Send final alert message to older peers after connecting.Gregory Maxwell
The old Bitcoin alert system has long since been retired. ( See also: https://bitcoin.org/en/alert/2016-11-01-alert-retirement ) This change causes each node to send any old peers that it connects with a copy of the final alert. The alert it hardcode cancels all other alerts including other final alerts.
2017-01-19[bugfix] save feeDelta instead of priorityDelta in DumpMempoolAlex Morcos
2017-01-19qt: Use nPowTargetSpacing constantMarcoFalke
2017-01-19Add fundrawtransactions new reserveChangeKey option to the release notesJonas Schnelli
2017-01-19[QA] Add test for fundrawtransactions new reserveChangeKey optionJonas Schnelli
2017-01-19[Wallet] Add an option to keep the change address key, true by defaultJonas Schnelli
2017-01-19Merge #9535: Split CNode::cs_vSend: message processing and message sendingWladimir J. van der Laan
376b3c2 Make the cs_sendProcessing a LOCK instead of a TRY_LOCK (Matt Corallo) d7c58ad Split CNode::cs_vSend: message processing and message sending (Matt Corallo)
2017-01-19Merge #9461: [Qt] Improve progress display during headers-sync and peer-findingJonas Schnelli
40ec7c7 [Qt] Improve progress display during headers-sync and peer-finding (Jonas Schnelli)