Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-02-27 | Move wallet RPC declarations to rpcwallet.h | Luke Dashjr | |
2017-02-27 | Reformat touched lines with C++11 | Luke Dashjr | |
2017-02-27 | RPC: Do all wallet access through new GetWalletForJSONRPCRequest | Luke Dashjr | |
2017-02-27 | RPC/Wallet: Pass CWallet as pointer to helper functions | Luke Dashjr | |
2017-02-07 | [Trivial] Remove incorrect help message from gettxoutproof() | John Newbery | |
2017-02-02 | Better handle invalid parameters to signrawtransaction | Matt Corallo | |
This silently skips trying to merge signatures from inputs which do not exist from transactions provided to signrawtransaction, instead of hitting an assert. | |||
2017-01-19 | Merge #9499: Use recent-rejects, orphans, and recently-replaced txn for ↵ | Wladimir J. van der Laan | |
compact-block-reconstruction c594580 Add braces around AddToCompactExtraTransactions (Matt Corallo) 1ccfe9b Clarify comment about mempool/extra conflicts (Matt Corallo) fac4c78 Make PartiallyDownloadedBlock::InitData's second param const (Matt Corallo) b55b416 Add extra_count lower bound to compact reconstruction debug print (Matt Corallo) 863edb4 Consider all (<100k memusage) txn for compact-block-extra-txn cache (Matt Corallo) 7f8c8ca Consider all orphan txn for compact-block-extra-txn cache (Matt Corallo) 93380c5 Use replaced transactions in compact block reconstruction (Matt Corallo) 1531652 Keep shared_ptrs to recently-replaced txn for compact blocks (Matt Corallo) edded80 Make ATMP optionally return the CTransactionRefs it replaced (Matt Corallo) c735540 Move ORPHAN constants from validation.h to net_processing.h (Matt Corallo) | |||
2017-01-11 | Deprecate non-txindex getrawtransaction and better warning | Pieter Wuille | |
2017-01-10 | Update RPC argument names | John Newbery | |
2017-01-09 | Make ATMP optionally return the CTransactionRefs it replaced | Matt Corallo | |
2017-01-05 | rpc: Argument name consistency | Wladimir J. van der Laan | |
The meaning is clear from the context, and we're inconsistent here. Also save typing when using named arguments. - `bitcoinaddress` -> `address` - `bitcoinprivkey` -> `privkey` - `bitcoinpubkey` -> `pubkey` | |||
2017-01-05 | rpc: Named arguments for rawtransaction calls | Wladimir J. van der Laan | |
2017-01-04 | Merge #9283: A few more CTransactionRef optimizations | Wladimir J. van der Laan | |
91335ba Remove unused MakeTransactionRef overloads (Pieter Wuille) 6713f0f Make FillBlock consume txn_available to avoid shared_ptr copies (Pieter Wuille) 62607d7 Convert COrphanTx to keep a CTransactionRef (Pieter Wuille) c44e4c4 Make AcceptToMemoryPool take CTransactionRef (Pieter Wuille) | |||
2016-12-31 | Increment MIT Licence copyright header year on files modified in 2016 | isle2983 | |
Edited via: $ contrib/devtools/copyright_header.py update . | |||
2016-12-22 | Added missing colons in when running help command | Anditto Heristyo | |
2016-12-21 | Make AcceptToMemoryPool take CTransactionRef | Pieter Wuille | |
2016-12-21 | Merge #8589: Inline CTxInWitness inside CTxIn | Wladimir J. van der Laan | |
f6fb7ac Move CTxInWitness inside CTxIn (Pieter Wuille) | |||
2016-12-05 | Add option to return non-segwit serialization via rpc | Gregory Sanders | |
2016-12-04 | Move CTxInWitness inside CTxIn | Pieter Wuille | |
2016-12-02 | Make DecodeHexTx return a CMutableTransaction | Pieter Wuille | |
2016-12-02 | Switch GetTransaction to returning a CTransactionRef | Pieter Wuille | |
2016-12-02 | Rename the remaining main.{h,cpp} to validation.{h,cpp} | Matt Corallo | |
2016-11-23 | Merge #9025: getrawtransaction should take a bool for verbose | Wladimir J. van der Laan | |
240189b add testcases for getrawtransaction (John Newbery) ce2bb23 getrawtransaction should take a bool for verbose (jnewbery) | |||
2016-11-22 | getrawtransaction should take a bool for verbose | jnewbery | |
2016-11-19 | Make CBlock::vtx a vector of shared_ptr<CTransaction> | Pieter Wuille | |
2016-10-19 | [RPC] Give RPC commands more information about the RPC request | Jonas Schnelli | |
2016-10-18 | Merge #8287: [wallet] Set fLimitFree = true | Wladimir J. van der Laan | |
fa8b02d [rpc] rawtx: Prepare fLimitFree to make it an option (MarcoFalke) fa28bfa [wallet] Set fLimitFree = true (MarcoFalke) | |||
2016-10-05 | Don't return the address of a P2SH of a P2SH. | jnewbery | |
2016-09-08 | Made the ForEachNode* functions in src/net.cpp more pragmatic and self ↵ | Jeremy Rubin | |
documenting | |||
2016-09-08 | net: create generic functor accessors and move vNodes to CConnman | Cory Fields | |
2016-08-25 | [rpc] rawtx: Prepare fLimitFree to make it an option | MarcoFalke | |
2016-08-25 | Do not shadow global RPC table variable (tableRPC) | Pavel Janík | |
2016-06-22 | [RPC] signrawtransaction can sign P2WSH | NicolasDorier | |
2016-06-22 | BIP143: Signing logic | Pieter Wuille | |
2016-06-22 | BIP141: Other consensus critical limits, and BIP145 | Pieter Wuille | |
Includes changes by Suhas Daftuar, Luke-jr, and mruddy. | |||
2016-06-22 | [RPC] Return witness data in blockchain RPCs | Johnson Lau | |
Includes RPC field name changes by Luke-jr. | |||
2016-06-22 | BIP143: Verification logic | Pieter Wuille | |
Includes simplifications by Eric Lombrozo. | |||
2016-06-22 | Refactor script validation to observe amounts | Pieter Wuille | |
This is a preparation for BIP143 support. | |||
2016-06-22 | BIP141: Witness program | Pieter Wuille | |
2016-06-22 | BIP144: Serialization, hashes, relay (sender side) | Pieter Wuille | |
Contains refactorings by Eric Lombrozo. Contains fixup by Nicolas Dorier. Contains cleanup of CInv::GetCommand by Alex Morcos | |||
2016-06-08 | [RPC] Fix createrawtx sequence number unsigned int parsing | Jonas Schnelli | |
2016-06-08 | Merge #8153: [rpc] fundrawtransaction feeRate: Use BTC/kB | Wladimir J. van der Laan | |
fa7f4f5 [rpc] fundrawtransaction feeRate: Use BTC/kB (MarcoFalke) faf82e8 [rpc] fundrawtransaction: Fix help text and interface (MarcoFalke) | |||
2016-06-07 | Merge #7957: [RPC][Bitcoin-TX] Add support for sequence number | Wladimir J. van der Laan | |
ae357d5 [Bitcoin-Tx] Add tests for sequence number support (Jonas Schnelli) e59336f [bitcoin-tx] allow to set nSequence number over the in= command (Jonas Schnelli) a946bb6 [RPC] createrawtransaction: add option to set the sequence number per input (Jonas Schnelli) | |||
2016-06-07 | Merge #8118: Reduce unnecessary hashing in signrawtransaction | Wladimir J. van der Laan | |
bd0f413 Reduce unnecessary hashing in signrawtransaction (Jonas Nick) | |||
2016-06-07 | [rpc] fundrawtransaction feeRate: Use BTC/kB | MarcoFalke | |
Also introduce UniValueType UniValueType is a wrapper for UniValue::VType which allows setting a typeAny flag. This flag indicates the type does not matter. (Used by RPCTypeCheckObj) | |||
2016-05-30 | Merge #7896: fix typo in help text | Wladimir J. van der Laan | |
fc95f6e fix typo in help text (Chris Moore) | |||
2016-05-30 | Reduce unnecessary hashing in signrawtransaction | Jonas Nick | |
2016-05-16 | Remove unneeded feerate param from RelayTransaction/AcceptToMemoryPool. | Gregory Maxwell | |
2016-04-27 | [RPC] createrawtransaction: add option to set the sequence number per input | Jonas Schnelli | |
2016-04-16 | fix typo in help text | Chris Moore | |
'in which the transaction is included in' |