Age | Commit message (Collapse) | Author |
|
|
|
|
|
b4f3e9c ui: Add "Copy raw transaction data" to transaction list context menu (Wladimir J. van der Laan)
|
|
Add a way to quickly copy transaction hex.
Primarily useful when manually submitting transactions,
e.g. `-walletbroadcast=0` is set.
|
|
|
|
|
|
|
|
|
|
Previously it would break if you flushed a parent cache while there was a child cache referring to it. This change will allow the flushing of parent caches.
|
|
1cf3dd8 Add unit test for UpdateCoins (Alex Morcos)
03c8282 Make CCoinsViewTest behave like CCoinsViewDB (Alex Morcos)
14470f9 ModifyNewCoins saves database lookups (Alex Morcos)
|
|
513686d [qt] Use maxTxFee instead of 10000000 (MarcoFalke)
|
|
|
|
|
|
|
|
This is only for unit tests.
|
|
6bc9e40 Chainparams: Explicit CChainParams arg for miner: (Jorge Timón)
598e494 Chainparams: Explicit CChainParams arg for main (pre miner): (Jorge Timón)
|
|
f6d9d5e add (max)uploadtarget infos to getnettotals RPC help (Jonas Schnelli)
|
|
4d29032 Fixed integer comparison warning. (Eric Lombrozo)
|
|
Also add testing for estimatesmartfee in smartfees.py
|
|
|
|
|
|
This provides more conservative estimates and reacts more quickly to a backlog.
Unfortunately the unit test for fee estimation depends on the success threshold (and the decay) chosen; also modify the unit test for the new default success thresholds.
|
|
|
|
These are more useful fee and priority estimation functions. If there is no fee/pri high enough for the target you are aiming for, it will give you the estimate for the lowest target that you can reliably obtain. This is better than defaulting to the minimum. It will also pass back the target for which it returned an answer.
|
|
6e18268 Switch to libsecp256k1-based validation for ECDSA (Pieter Wuille)
|
|
aee22bf Avoid a compile error on hosts with libevent too old for EVENT_LOG_WARN. (Gregory Maxwell)
|
|
|
|
This uses _EVENT_LOG_WARN instead, which appears to be defined in the
old versions of libevent that I have on some systems.
|
|
9bd3f03 Clarify 'fee' field in fundrawtransaction help text (Peter Todd)
|
|
773ae46 [Qt] add shortcurts for debug-/console-window (Jonas Schnelli)
|
|
|
|
|
|
bbf49da Fix comment for blocksonly parameter interactions (Patick Strateman)
6a4982f Fix fRelayTxs comment (Patick Strateman)
59441a0 Display DEFAULT_WHITELISTALWAYSRELAY in help text (Patick Strateman)
71a2683 Use DEFAULT_BLOCKSONLY and DEFAULT_WHITELISTALWAYSRELAY constants (Patick Strateman)
762b13b Add help text for blocksonly and whitelistalwaysrelay (Patick Strateman)
3a96497 Add whitelistalwaysrelay option (Patick Strateman)
420fa81 Do not process tx inv's in blocksonly mode (Patick Strateman)
4044f07 Add blocksonly mode (Patick Strateman)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
e495ed5 add documentation for exluding whitelistes peer from maxuploadtarget (Jonas Schnelli)
5760749 [docs] rename reducetraffic.md to reduce-traffic.md (Jonas Schnelli)
d61fcff don't enforce maxuploadtargets disconnect for whitelisted peers (Jonas Schnelli)
|
|
b3ae384 Remove LOCK(cs_main) from decodescript (Peter Todd)
|
|
Completely static RPC call that doesn't change or even look at mutable
state anywhere.
|
|
|
|
|
|
|
|
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.
|
|
Useful now that BIP113 is enforced for transactions entering the
mempool. Was previously only (indirectly) available by calling
getblocktemplate, a relatively expensive RPC call.
|