Join GitHub today
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
Already on GitHub? Sign in to your account
Add option to opt into full-RBF when sending funds (rebase, original by petertodd) #8601
Conversation
laanwj
added
Feature
Wallet
labels
Aug 26, 2016
laanwj
referenced this pull request
Aug 26, 2016
Closed
Add option to opt into full-RBF when sending funds #7132
laanwj
changed the title from
Add option to opt into full-RBF when sending funds (rebase)
to
Add option to opt into full-RBF when sending funds (rebase, original by petertodd)
Aug 26, 2016
MarcoFalke
commented on an outdated diff
Aug 26, 2016
| @@ -2355,11 +2356,17 @@ bool CWallet::CreateTransaction(const vector<CRecipient>& vecSend, CWalletTx& wt | ||
| // Fill vin | ||
| // | ||
| - // Note how the sequence number is set to max()-1 so that the | ||
| - // nLockTime set above actually works. | ||
| + // Note how the sequence number is set to non-maxint so that | ||
| + // the nLockTime set above actually works. | ||
| + / |
|
|
|
I thought the commandline option was to be renamed to |
|
utACK 05fa823 |
|
utACK |
Fine with me. |
|
Why not rename the |
|
utACK b54c367 as-is http://codepad.org/fhQWSuAk could be included to address @paveljanik's suggestion |
|
Squashed in @luke-jr's patch |
laanwj
merged commit 86726d8
into
bitcoin:master
Sep 13, 2016
1 check was pending
added a commit
that referenced
this pull request
Sep 13, 2016
| @@ -53,6 +54,8 @@ static const bool DEFAULT_SPEND_ZEROCONF_CHANGE = true; | ||
| static const bool DEFAULT_SEND_FREE_TRANSACTIONS = false; | ||
| //! -txconfirmtarget default | ||
| static const unsigned int DEFAULT_TX_CONFIRM_TARGET = 2; | ||
| +//! -walletrbf default | ||
| +static const bool DEFAULT_WALLET_RBF = false; |
|
Please see the linked pull in the description On Thu, Sep 15, 2016 at 4:19 AM, R E Broadley notifications@github.com
|
laanwj commentedAug 26, 2016
Rebases #7132
Also adds the comment for #7132 (comment)
Original pull has plenty of ACKs. After all this time we still have no way to opt in to RBF in the wallet, let's not try to bikeshed it to death this time.