| Commit message (Collapse) | Author | Age | Files | Lines |
| ... | |
| |/ |
|
| | |
|
| |
|
|
|
|
|
|
| |
see issues:
https://github.com/bitcoin-dot-org/bitcoin.org/issues/1237
https://github.com/bitcoin/bitcoin/issues/7532
|
| | |
|
| |\
| |
| |
| |
| | |
d13f65e rpc: update inline comments to refer to new file paths (Daniel Cousens)
a0eaff8 move rpc* to rpc/ (Daniel Cousens)
|
| | | |
|
| | | |
|
| |\ \
| |/
|/|
| | |
2409865 Reduce inefficiency of GetAccountAddress() (Chris Moore)
|
| | |
| |
| |
| |
| |
| | |
Don't scan the wallet to see if the current key has been used if we're going to make a new key anyway.
Stop scanning the wallet as soon as we see that the current key has been used.
Don't call isValid() twice on the current key.
|
| |\ \
| | |
| | |
| | | |
dd2dc40 [RPC, Wallet] Move RPC dispatch table registration to wallet/ code (Jonas Schnelli)
|
| | | |
| | |
| | |
| | | |
Allow extending the rpc dispatch table by appending commands when server is not running.
|
| | | |
| | |
| | |
| | |
| | |
| | | |
Add "bip125-replaceable" output field to listtransactions and gettransaction
which indicates if an unconfirmed transaction, or any unconfirmed parent, is
signaling opt-in RBF according to BIP 125.
|
| |\ \ \
| |/ /
|/| |
| | | |
9d263bd Typo fixes in comments (Chris Wheeler)
|
| | | | |
|
| |\ \ \
| | | |
| | | |
| | | | |
faf671b [wallet] Clarify rpc help message with regard to rounding (MarcoFalke)
|
| | | |/
| |/| |
|
| | |/
|/|
| |
| | |
Unconfirmed transactions that are not in your mempool either due to eviction or other means may be unlikely to be mined. abandontransaction gives the wallet a way to no longer consider as spent the coins that are inputs to such a transaction. All dependent transactions in the wallet will also be marked as abandoned.
|
| |/ |
|
| |\
| |
| |
| |
| |
| |
| |
| | |
fa19a58 HelpMessage: Don't hide -mintxfee behind showDebug (MarcoFalke)
faffc17 rpcwallet: Clarify what settxfee does (MarcoFalke)
9999cb0 Fix url in .travis.yml (MarcoFalke)
fa22a10 contrib: Del. gitian downloader config and update gitian README (MarcoFalke)
fad3035 [doc] Minor markdown fixes (MarcoFalke)
|
| | | |
|
| |/ |
|
| |\
| |
| |
| | |
5c2fd38 Add missing "blocktime" description to listtransactions help, fix formatting. (Pavel Janík)
|
| | | |
|
| |/
|
|
|
|
| |
every need
Huge performance improvement (450%) for zapwallettxes
|
| |\
| |
| |
| | |
9bd3f03 Clarify 'fee' field in fundrawtransaction help text (Peter Todd)
|
| | |
| |
| |
| |
| |
| | |
Previous text could be interpreted as the the _additional_ fee paid by
the result on top of the fee the original version paid, rather than the
correct interpretation: the absolute fee the resulting tx pays.
|
| | |
| |
| |
| |
| | |
Previously this case failed deep in Cwallet::CreateTransaction() with
the error message "Transaction amounts must be positive"
|
| |/
|
|
|
| |
Previously if you called fundrawtransaction and set includeWatching to
false it'd act as through you set it to true.
|
| |\
| |
| |
| | |
fd55571 wallet: Expose GUI labels in RPC (Luke Dashjr)
|
| | | |
|
| | |
| |
| |
| | |
similar to secp256k1 include and compile univalue over a subtree
|
| |\ \
| | |
| | |
| | | |
9f68ed6 typofixes (found by misspell_fixer) (Veres Lajos)
|
| | |/ |
|
| |\ \
| |/
|/|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
d042854 SQUASH "Implement watchonly support in fundrawtransaction" (Matt Corallo)
428a898 SQUASH "Add have-pubkey distinction to ISMINE flags" (Matt Corallo)
6bdb474 Implement watchonly support in fundrawtransaction (Matt Corallo)
f5813bd Add logic to track pubkeys as watch-only, not just scripts (Matt Corallo)
d3354c5 Add have-pubkey distinction to ISMINE flags (Matt Corallo)
5c17059 Update importaddress help to push its use to script-only (Matt Corallo)
a1d7df3 Add importpubkey method to import a watch-only pubkey (Matt Corallo)
907a425 Add p2sh option to importaddress to import redeemScripts (Matt Corallo)
983d2d9 Split up importaddress into helper functions (Matt Corallo)
cfc3dd3 Also remove pay-2-pubkey from watch when adding a priv key (Matt Corallo)
|
| | |
| |
| |
| |
| | |
Some code and test cases stolen from
Bryan Bishop <[email protected]> (pull #5524).
|
| | |
| |
| |
| |
| |
| |
| |
| |
| | |
Previously various user-facing strings have used inconsistent currency units "BTC",
"btc" and "bitcoins". This adds a single constant and uses it for each reference to
the currency unit.
Also adds a description of the unit for --maxtxfee, and adds the missing "amount"
field description to the (deprecated) move RPC command.
|
| |\ \
| | |
| | |
| | |
| | | |
60c8bac Includes: Cleanup around net main and wallet (Jorge Timón)
9dd793f TRIVIAL: Missing includes (Jorge Timón)
|
| | |/ |
|
| |\ \
| |/
|/|
| |
| |
| | |
a794284 locking: add a quick example of GUARDED_BY (Cory Fields)
2b890dd locking: fix a few small issues uncovered by -Wthread-safety (Cory Fields)
cd27bba locking: teach Clang's -Wthread-safety to cope with our scoped lock macros (Cory Fields)
|
| | |
| |
| |
| |
| |
| | |
- rpcwallet: No need to lock twice here
- openssl: Clang doesn't understand selective lock/unlock here. Ignore it.
- CNode: Fix a legitimate (though very unlikely) locking bug.
|
| |\ \
| |/
|/|
| |
| |
| |
| |
| | |
2085895 fundrawtransaction tests (Jonas Schnelli)
21bbd92 Add fundrawtransaction RPC method (Matt Corallo)
1e0d1a2 Add FundTransaction method to wallet (Matt Corallo)
2d84e22 Small tweaks to CCoinControl for fundrawtransaction (Matt Corallo)
9b4e7d9 Add DummySignatureCreator which just creates zeroed sigs (Pieter Wuille)
|
| | | |
|
| |\ \
| | |
| | |
| | | |
ef2a3de Add paytxfee to getwalletinfo, warnings to getnetworkinfo (Stephen)
|
| | | | |
|
| | |/
|/|
| |
| |
| |
| |
| |
| |
| |
| | |
Chance "getbalance *" not to use IsTrusted. The method and result
now match the "getbalance <specific-account>" behavior. In
particular, "getbalance * 0" now works.
Also fixed a comment -- GetGalance has required 1 confirmation
for many years, and the default "getbalance *" behavior matches
that.
|
| |/
|
|
|
|
|
|
|
| |
- Add an accept test for zero amounts, and a reject test for negative
amounts
- Remove ugly hack in `settxfee` that is no longer necessary
- Do explicit zero checks in wallet RPC functions
- Don't add a check for zero amounts in `createrawtransaction` - this
could be seen as a feature
|
| |
|
|
|
|
| |
- implement find_value() function for UniValue
- replace all Array/Value/Object types with UniValues, remove JSON Spirit to UniValue wrapper
- remove JSON Spirit sources
|
| | |
|
| | |
|
| | |
|