Age | Commit message (Collapse) | Author |
|
UTF-8 support for JSON-RPC
|
|
|
|
Relay OP_RETURN data TxOut as standard transaction type.
|
|
Conflicts:
src/wallet.cpp
Fixed LogPrint/printf merge conflict.
|
|
The existing CNode::addrLocal member is revealed to the user,
as an address string, similar to the existing "addr" field.
Instead of showing garbage or empty string,
it simply will not appear in the output if local address not known yet.
|
|
update default -rpcsslciphers to include TLSv1.2
|
|
Remove automatic update of default key
|
|
Allow SendMessages to run partially without cs_main
|
|
Changing LockedPageManager to use a managed instance
|
|
Make -DDEBUGLOCKORDER + -debug less noisy
|
|
db0e8cc Bump Year Number to 2013 (super3)
|
|
|
|
paymentserver: style fixes / cleanup
|
|
qt: merge walletstack and walletframe
|
|
This ensures the allocator is ready no matter when it's needed (as
some STL implementations allocate in constructors -- i.e., MSVC's STL
in debug builds).
Using boost::call_once to guarantee thread-safe static initialization.
Adding some comments describing why the change was made.
Addressing deinitialization of the LockedPageManager object
by initializing it in a local static initializer and adding
an assert in the base's destructor.
|
|
[Fee logic] Don't count txins for priority to encourage sweeping.
|
|
Reject non-canonically-encoded CompactSize
|
|
Two small free transaction policy changes
|
|
Print out every mutex lock/unlock if compiled -DDEBUGLOCKORDER
only if -debug=lock is set.
|
|
Selecting the button for a pages was going through bitcoingui->walletframe->walletview->bitcoingui.
Because of this, the actions for the pages had to be exposed on the BitcoinGUI object.
|
|
- rename reportError() into message() to be in line with our default
message() signal/slot naming (and can be used for all types of messages)
- rename some QStrings to not collide with message() function
- add a missing message for malformed URIs that IS also used in BitcoinGUI
- fix / extend some comments and misc style fixes
|
|
There were too many levels of indirection here, and the functionality of
walletframe and walletstack can easily be merged. This commit
merges the two which cuts a lot of lines of boilerplate code.
|
|
add SendCoinsEntry::updateLabel() function
|
|
- this extends the accepted ciphersuites with TLSv1.2 ones
- also removes !AH, as I could not find documentation on it and the change
did not result in a changed ciphersuite list (checked via openssl
ciphers -v)
- closes #3096 (which also contains more details)
|
|
clientmodel: remove 2 hard-coded values, use CChainParams instead
|
|
Rename -tor to -onion to better reflect what it does.
|
|
Walletload
|
|
Inline signature serializer
|
|
- makes the code for updating a label reusable
- no functional changes
|
|
don't touch addressbook when using secure payment-requests
|
|
make BitcoinAmountField::setReadOnly() usable
|
|
CBlockLocator improvements & move to core
|
|
|
|
|
|
SendMessages() tries to acquire a cs_main lock now, but this isn't nessecary
for much of its functionality. Move those parts out of the locked section,
so they can always be performed, and we hold cs_main for a shorter time.
|
|
- use it for secure payment-requests (this change allows a copy&paste of
the amount and looks a little nicer than just a disabled GUI element)
|
|
Bitcoin-Qt: misc changes for sendcoins and paymentsever
|
|
|
|
[QT] Add network traffic graph to debug window
|
|
|
|
|
|
As CBlockLocator is a P2P data structure, and independent from the
validation logic, it can be moved to core.
|
|
This removes a few unused CBlockLocator methods, and moves the
construction and fork-finding logic to CChain (which can do these
more efficiently, as it has a height-indexable chain available).
It also makes CBlockLocator independent from the validation code.
|
|
The cleanup code needs to check for NULL rpcworkers thread group.
|
|
Refactor/encapsulate chain globals into a CChain class
|
|
Merge upstream LevelDB 1.13
|
|
|
|
971bb3e Added ping time measurement. New RPC "ping" command to request ping. Implemented "pong" message handler. New "pingtime" field in getpeerinfo, to provide results to user. New "pingwait" field, to show pings still in flight, to better see newly lagging peers. (Josh Lehan)
|
|
|
|
|