-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Backport missing PRs from Bitcoin 0.14 - Part 5 #1851
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Backport missing PRs from Bitcoin 0.14 - Part 5 #1851
Conversation
…atting of help 59daa58 RPC/Mining: getblocktemplate: Update and fix formatting of help (Luke Dashjr)
fc14609 RPC: augment getblockchaininfo bip9_softforks data (mruddy)
…rator!=, which is only in newer boost versions 7942d31 RPC: importmulti: Avoid using boost::variant::operator!=, which is only in newer boost versions (Luke Dashjr)
1ae5839 moveonly: move `coincontrol` to `src/wallet` (Wladimir J. van der Laan)
3a286ab Eliminating Inconsistencies in Textual Output (S. Matthew English)
…returned in txOut 1d8e12b Fix doxygen comment: the transaction is returned in txOut (Pavel Janík)
3421e74 Clarify `listenonion` (unsystemizer)
…ions. 515e264 Make connect=0 disable automatic outbound connections. (Gregory Maxwell)
…atch Linux 3f7581d [TRIVIAL] reorder Windows gitian build order to match Linux (Micha)
…sschnelli) 339c4b6 release: bump required osx version to 10.8. Credit jonasschnelli. (Cory Fields)
…essage 04c1c15 rpc: Remove invalid explanation from wallet fee message (Wladimir J. van der Laan)
…(fanquake) ba26d41 Update build notes for dropping osx 10.7 support (Michael Ford)
1c3ecc7 instance of 'mem pool' to 'mempool' (S. Matthew English)
169bdab Return useful error message on ATMP failure (instagibbs)
7f61b49 Change all instance of 'GMT epoch' to 'Unix epoch' (matthias)
3333e5a [qt] Return useful error message on ATMP failure (MarcoFalke)
6c5cd9d test: Add format-dependent comparison to bctest (Wladimir J. van der Laan)
444c673 bench: Add benchmark for lockedpool allocation/deallocation (Wladimir J. van der Laan) 6567999 rpc: Add `getmemoryinfo` call (Wladimir J. van der Laan) 4536148 support: Add LockedPool (Wladimir J. van der Laan) f4d1fc2 wallet: Get rid of LockObject and UnlockObject calls in key.h (Wladimir J. van der Laan) 999e4c9 wallet: Change CCrypter to use vectors with secure allocator (Wladimir J. van der Laan)
…f MAP_ANONYMOUS is not defined 4a9f3c5 Do not shadow variable, use deprecated MAP_ANON if MAP_ANONYMOUS is not defined. (Pavel Janík)
…t headers in source files 159597a [devtools] script support for managing source file copyright headers (isle2983)
86029e7 Move CWalletDB::ReorderTransactions to CWallet (Patrick Strateman)
…oadBlockIndexDB() d0b01f3 Explicitly pass const CChainParams& to LoadBlockIndexDB() (Geoffrey Tsui)
…pt wtx, flush thread) cab1da7 [Wallet] Refactor wallet/init interaction (Reaccept wtx, flush thread) (Jonas Schnelli)
eedc461 Merge `doc/unit-tests.md` into `src/test/README.md` (Wladimir J. van der Laan)
0fdf810 wallet: Change default confirm target from 2 to 6 (Wladimir J. van der Laan)
2ca882a Declare wallet.h functions inline (Pieter Wuille)
…nistic randomness for the localnonce 59ac5c5 net: Use deterministic randomness for CNode's nonce, and make it const (Cory Fields) aff6584 net: constify a few CNode vars to indicate that they're threadsafe (Cory Fields)
…connection failure 8f329f9 Add common failure cases for rpc server connection failure (instagibbs)
2b175d4 Clean up bctest.py and bitcoin-util-test.py (John Newbery)
190fd32 Remove unused CTxOut::GetHash() (Matt Corallo)
4b04e32 [copyright] copyright header style uniform (isle2983)
66ca6cd Enforcing consistency, 'gitian' to 'Gitian' (S. Matthew English)
… archived release notes faead5e [doc] release-process: Mention GitHub release and archived release notes (MarcoFalke)
…gers from contrib 1ee6f91 new var DIST_CONTRIB adds useful things for packagers from contrib/ to EXTRA_DIST (nomnombtc)
…izion Matches Bitcoins style and makes upcoming backports easier
…ttemptToEvict. d32036a Use RelevantServices instead of node_network in AttemptToEvict. (Gregory Maxwell)
…only. 1f951c6 Allow filterclear messages for enabling TX relay only. (R E Broadley)
a5572c5 to
d452018
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
see inline comments
src/policy/fees.cpp
Outdated
| feeStats.Read(filein); | ||
| priStats.Read(filein); | ||
| nBestSeenHeight = nFileBestSeenHeight; | ||
| if (nFileVersion < 139900) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
120300
src/txmempool.cpp
Outdated
| try { | ||
| LOCK(cs); | ||
| fileout << 120000; // version required to read: 0.12.00 or later | ||
| fileout << 120201; // version required to read: 0.12.00 or later |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
120300
Makefile.am
Outdated
| OSX_QT_TRANSLATIONS = da,de,es,hu,ru,uk,zh_CN,zh_TW | ||
|
|
||
| DIST_DOCS = $(wildcard doc/*.md) $(wildcard doc/release-notes/*.md) | ||
| DIST_CONTRIB = $(top_srcdir)/contrib/bitcoin-cli.bash-completion \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this block should be dashified
src/qt/sendcoinsdialog.cpp
Outdated
| CoinControlDialog::coinControl->nMinimumTotalFee = 0; | ||
|
|
||
| // show the estimated reuquired time for confirmation | ||
| ui->confirmationTargetLabel->setText(GUIUtil::formatDurationStr(nConfirmTarget*600)+" / "+tr("%n block(s)", "", nConfirmTarget)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
s/600/Params().GetConsensus().nPowTargetSpacing/
|
Pushed review fixes |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
slightly tested ACK
Continuation of #1770