Permalink
Please sign in to comment.
Browse files
Merge #10516: Backports for 0.14.3
ff274d3 [doc] Add hint about getmempoolentry to getrawmempool help. (Karl-Johan Alm) 76f9cf9 contrib: Update location of seeds.txt (Wladimir J. van der Laan) 12adedf Trivial: remove extra character from comment (CryptAxe) d2ec969 Fixed typo in documentation for merkleblock.h (Mikerah) 3612219 contrib/init/bitcoind.openrcconf: Don't disable wallet by default (Luke Dashjr) 692dbb0 [doc] Minor corrections to osx dependencies (fanquake) 87a21d5 Fix: make CCoinsViewDbCursor::Seek work for missing keys (Pieter Wuille) 28b8b8b [wallet] Securely erase potentially sensitive keys/values (Thomas Snider) ff13f59 [wallet] Make sure pindex is non-null before possibly referencing in LogPrintf call. (Karl-Johan Alm) e23cef0 Fix some empty vector references (Pieter Wuille) 6ad45b8 Re-enable upnp support in contrib/debian (Matt Corallo) e9a0d89 Build with QT5 on Debian-based systems using contrib/debian (Matt Corallo) 2ea0358 Bump minimum boost version in contrib/debian (Matt Corallo) c94e262 Update contrib/debian to latest Ubuntu PPA upload. (Matt Corallo) 96c7f2c Add CheckQueue Tests (Jeremy Rubin) e207342 Fix CCheckQueue IsIdle (potential) race condition and remove dangerous constructors. (Jeremy Rubin) ef810c4 [trivial] Fix a typo (introduced two days ago) in the default fee warning (practicalswift) 7abe7bb Qt/Send: Give fallback fee a reasonable indent (Luke Dashjr) 3e4d7bf Qt/Send: Figure a decent warning colour from theme (Luke Dashjr) c5adf8f [Qt] Show more significant warning if we fall back to the default fee (Jonas Schnelli) ee1a60d [tests] update disconnect_ban.py test case to work with listbanned (John Newbery) d289b56 [net] listbanned RPC and QT should show correct banned subnets (John Newbery) 0422693 [tests] disconnect_ban: remove dependency on urllib (John Newbery) 98bd0c3 [tests] disconnect_ban: use wait_until instead of sleep (John Newbery) bfd1cf6 [tests] disconnectban test - only use two nodes (John Newbery) 5bc75bb [tests] fix nodehandling.py flake8 warnings (John Newbery) c25d0a8 Update release notes to include RPC error code changes. (John Newbery) f5efe82 Return correct error codes in fundrawtransaction(). (John Newbery) 4943d7a Return correct error codes in setban(). (John Newbery) 18c109d Return correct error codes in removeprunedfunds(). (John Newbery) fe51c89 Return correct error codes in blockchain.cpp. (John Newbery) 3ad00b4 Return correct error codes in bumpfee(). (John Newbery) 71463a7 [qa] Test prioritise_transaction / getblocktemplate interaction (Suhas Daftuar) d28d583 Bugfix: PrioritiseTransaction updates the mempool tx counter (Suhas Daftuar) Tree-SHA512: fa3628527c8e176e438de992b9c5815cc2f3c296dbe5d81b592d17a907554e9c6af7eb595e96a2c345de399ba5326c07b4791a91b7b07f89dce0787c85891206
- Loading branch information...
Showing
with
884 additions
and 264 deletions.
- +122 −3 contrib/debian/changelog
- +29 −26 contrib/debian/control
- +3 −1 contrib/debian/rules
- +1 −1 contrib/init/bitcoind.openrcconf
- +1 −1 contrib/seeds/README.md
- +3 −3 doc/build-osx.md
- +49 −0 doc/release-notes.md
- +8 −10 qa/rpc-tests/bumpfee.py
- +6 −34 qa/rpc-tests/fundrawtransaction.py
- +2 −12 qa/rpc-tests/importprunedfunds.py
- +56 −52 qa/rpc-tests/nodehandling.py
- +9 −21 qa/rpc-tests/p2p-acceptblock.py
- +15 −1 qa/rpc-tests/prioritise_transaction.py
- +11 −20 qa/rpc-tests/pruning.py
- +9 −12 qa/rpc-tests/rawtransactions.py
- +1 −0 src/Makefile.test.include
- +12 −10 src/checkqueue.h
- +1 −1 src/merkleblock.cpp
- +1 −1 src/merkleblock.h
- +5 −3 src/net.cpp
- +22 −0 src/qt/forms/sendcoinsdialog.ui
- +7 −0 src/qt/sendcoinsdialog.cpp
- +12 −6 src/rpc/blockchain.cpp
- +2 −2 src/rpc/net.cpp
- +6 −2 src/streams.h
- +1 −0 src/support/cleanse.h
- +442 −0 src/test/checkqueue_tests.cpp
- +5 −1 src/txdb.cpp
- +1 −0 src/txmempool.cpp
- +1 −1 src/txmempool.h
- +22 −21 src/wallet/db.h
- +2 −2 src/wallet/rpcdump.cpp
- +13 −13 src/wallet/rpcwallet.cpp
- +4 −4 src/wallet/wallet.cpp
Oops, something went wrong.
0 comments on commit
91be5e3