Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-12-29 | Add test cases to test new bitcoin-tx functionality | jnewbery | |
This commit add testcases to test the following functions in bitcoin-tx: - add a pay to non-standard script output - add a P2SH output - add a P2WSH output - add a P2WSH wrapped in a P2SH output - add a pay to pub key output - add a P2WPKH output - add a P2WPKH wrapped in a P2SH output - add a bare multisig output - add a multisig in P2SH output - add a multisig in a P2WSH output - add a multisig in a P2WSH wrapped in as P2SH output | |||
2016-12-29 | Add all transaction output types to bitcoin-tx. | jnewbery | |
This commit enhances bitcoin-tx so all remaining standard TXO types can be created: - Pay to Pub Key - Multi-sig - bare multi-sig - multi-sig in Pay To Script Hash - multi-sig in Pay to Witness Script Hash - multi-sig in Pay to Witness Script Hash, wrapped in P2SH - Pay to Witness Pub Key Hash - Pay to Witness Pub Key Hash, wrapped in P2SH - Pay to Witness Script Hash - Pay to Witness Script Hash, wrapped in P2SH | |||
2016-12-29 | add p2sh and segwit options to bitcoin-tx outscript command | Stanislas Marion | |
2016-12-29 | GUI/RPCConsole: Include importmulti in history sensitive-command filter | Luke Dashjr | |
2016-12-29 | Qt/RPCConsole: Use RPCParseCommandLine to perform command filtering | Luke Dashjr | |
2016-12-29 | Qt/Test: Make sure filtering sensitive data works correctly in nested commands | Luke Dashjr | |
2016-12-29 | Qt/RPCConsole: Teach RPCParseCommandLine how to filter out arguments to ↵ | Luke Dashjr | |
sensitive commands | |||
2016-12-29 | Qt/RPCConsole: Make it possible to parse a command without executing it | Luke Dashjr | |
2016-12-29 | Qt/RPCConsole: Truncate filtered commands to just the command name, rather ↵ | Luke Dashjr | |
than skip it entirely in history | |||
2016-12-29 | Qt/RPCConsole: Add signmessagewithprivkey to list of commands filtered from ↵ | Luke Dashjr | |
history | |||
2016-12-29 | Qt/RPCConsole: Refactor command_may_contain_sensitive_data function out of ↵ | Luke Dashjr | |
RPCConsole::on_lineEdit_returnPressed | |||
2016-12-29 | Bugfix: Do not add sensitive information to history for real | Luke Dashjr | |
Original code was missing braces, and short-circuited before checking everything after importprivkey | |||
2016-12-29 | Qt/RPCConsole: Don't store commands with potentially sensitive information ↵ | Jonas Schnelli | |
in the history Filters importprivkey, signrawtransaction, walletpassphrase, walletpassphrasechange, and encryptwallet | |||
2016-12-29 | Qt/RPCConsole: Save current command entry when browsing history | Jonas Schnelli | |
Shell-like, but doesn't store changed history commands until executing it. | |||
2016-12-28 | Fix linker error when configured with --enable-lcov | Douglas Roark | |
2016-12-28 | Merge #9436: test: Include tx data in EXTRA_DIST | MarcoFalke | |
fa558be test: Include tx data in EXTRA_DIST (MarcoFalke) | |||
2016-12-27 | Merge #9349: Make CScript (and prevector) c++11 movable. | Pieter Wuille | |
2ddfcfd Make CScript (and prevector) c++11 movable. (Pieter Wuille) | |||
2016-12-27 | Merge #9243: Clean up mapArgs and mapMultiArgs Usage | Pieter Wuille | |
c2f61be Add a ForceSetArg method for testing (Matt Corallo) 4e04814 Lock mapArgs/mapMultiArgs access in util (Matt Corallo) 4cd373a Un-expose mapArgs from utils.h (Matt Corallo) 71fde55 Get rid of mapArgs direct access in ZMQ construction (Matt Corallo) 0cf86a6 Introduce (and use) an IsArgSet accessor method (Matt Corallo) 2b5f085 Fix non-const mapMultiArgs[] access after init. (Matt Corallo) c8042a4 Remove arguments to ParseConfigFile (Matt Corallo) | |||
2016-12-27 | test: Include tx data in EXTRA_DIST | MarcoFalke | |
2016-12-27 | Merge #9435: Removed unused variable in test, fixing warning. | MarcoFalke | |
35356b4 Remove unused variable in test, fixing warning. (Russell Yanofsky) | |||
2016-12-27 | Add a ForceSetArg method for testing | Matt Corallo | |
2016-12-27 | Remove unused variable in test, fixing warning. | Russell Yanofsky | |
Pointed out by Pavel Janík <Pavel@Janik.cz> in https://github.com/bitcoin/bitcoin/pull/9308. | |||
2016-12-26 | Release cs_main before processing cmpctblock as header | Suhas Daftuar | |
2016-12-26 | Release cs_main before calling ProcessNewBlock (cmpctblock handling) | Suhas Daftuar | |
2016-12-24 | Lock mapArgs/mapMultiArgs access in util | Matt Corallo | |
2016-12-24 | Un-expose mapArgs from utils.h | Matt Corallo | |
2016-12-24 | Get rid of mapArgs direct access in ZMQ construction | Matt Corallo | |
2016-12-23 | Introduce (and use) an IsArgSet accessor method | Matt Corallo | |
2016-12-23 | Fix non-const mapMultiArgs[] access after init. | Matt Corallo | |
Swap mapMultiArgs for a const-reference to a _mapMultiArgs which is only accessed in util.cpp | |||
2016-12-23 | Remove arguments to ParseConfigFile | Matt Corallo | |
2016-12-23 | Do not evaluate hidden LogPrint arguments | Pieter Wuille | |
2016-12-23 | [CoinControl] Allow non-wallet owned change addresses | Jonas Schnelli | |
2016-12-23 | Allow shutdown during LoadMempool, dump only when necessary | Jonas Schnelli | |
2016-12-23 | Merge #9406: Re-enable a blank v1 Tx JSON test | MarcoFalke | |
b371732 Re-enable a blank v1 Tx JSON test (Douglas Roark) | |||
2016-12-23 | Mention RSVG dependency when creating the disk image on OSX | Jonas Schnelli | |
2016-12-23 | build: Fix 'make deploy' for OSX | Cory Fields | |
Native OSX uses system tools rather than 3rd party dependencies. rsvg-convert is still required, though. | |||
2016-12-22 | Share unused mempool memory with coincache | Pieter Wuille | |
If the mempool is not completely full, treat the difference between the maximum size and the actual usage as available for the coin cache. This also changes the early flush trigger from (usage > 0.9 * space) to (usage > 0.9 * space && usage > space - 100MB). This means we're not permanently leaving 10% of the space unused when the space is large. | |||
2016-12-22 | updated listsinceblock rpc docs | accraze | |
fixes #8758 | |||
2016-12-22 | Merge #9407: [Trivial] Added missing colons in when running help command | MarcoFalke | |
afe5b3f Added missing colons in when running help command (Anditto Heristyo) | |||
2016-12-22 | Added missing colons in when running help command | Anditto Heristyo | |
2016-12-21 | Make CScript (and prevector) c++11 movable. | Pieter Wuille | |
Such moves are used when reallocating vectors that contain them, for example. | |||
2016-12-21 | Remove unused MakeTransactionRef overloads | Pieter Wuille | |
2016-12-21 | Make FillBlock consume txn_available to avoid shared_ptr copies | Pieter Wuille | |
2016-12-21 | Convert COrphanTx to keep a CTransactionRef | Pieter Wuille | |
2016-12-21 | Make AcceptToMemoryPool take CTransactionRef | Pieter Wuille | |
2016-12-21 | Make nWalletDBUpdated atomic to avoid a potential race. | Patrick Strateman | |
2016-12-21 | Re-enable a blank v1 Tx JSON test | Douglas Roark | |
2016-12-21 | Make rpcauth help message clearer, add example in example .conf | Gregory Sanders | |
2016-12-21 | Merge #8589: Inline CTxInWitness inside CTxIn | Wladimir J. van der Laan | |
f6fb7ac Move CTxInWitness inside CTxIn (Pieter Wuille) | |||
2016-12-21 | Merge #9308: [test] Add CCoinsViewCache Access/Modify/Write tests | Wladimir J. van der Laan | |
07df40b [test] Add CCoinsViewCache Access/Modify/Write tests (Russell Yanofsky) |