Age | Commit message (Collapse) | Author |
|
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)
|
|
|
|
|
|
- I observed a massive amount of redefinition warnings after #3071, which
are silenced by this patch
- uses the same style as we do in other places, where we define _WIN32_WINNT
|
|
- fixes #3006 by preventing addressbook changes when using
secure payment-requests
sq
|
|
- make processPaymentRequest() use our own HTML-escaping function from
GUIUtil
- make string "application/bitcoin-payment" a constant (below similar
constant strings in the .cpp file)
|
|
- display the real string (faulty address), which causes the valid address
check to fail, instead of a stringified "nonsense" CBitcoinAddress
|
|
- clear(): clear all UI elements (for secure and insecure payments)
- setValue(): only modify UI elements, which need to be set (for secure
or insecure payments)
|
|
Remove include of windows.h from allocators.h
|
|
|
|
make fCommandLine a local variable in AppInit()
|
|
Create an allocators.cpp, and move all of the #ifdef WIN32
code and the #include of windows.h into it.
Two motives for this cleanup:
1. I'm getting a weird error in windows.h in my smartfee branch.
2. allocators.h is included (indirectly) just about everywhere, so
this should speed up Windows compiles quite a lot.
|
|
|
|
|
|
add missing Boost Thread join_all() call during shutdown
|
|
- I introduced the problem and fixed it with better readable code
|
|
- fixes #3037 by adding missing join_all() call and brings bitcoind
shutdown code in line with Bitcoin-Qt shutdown code
- added a comment for the if (!fRet) case
|
|
Bitcoin-Qt: prevent stuck/unusable debug window on exit
|
|
- when closing the client with an open debug window, that window could
become stuck/unsuable (it was still shown wherea the main window was
hidden already)
- fix this by hiding the debug window, when quitting the the client
|
|
|
|
Changes the maximum size of a free transaction that will be created
from 10,000 bytes to 1,000 bytes.
The idea behind this change is to make the free transaction area
available to a greater number of people; with the default 27K-per-block,
just three very-large very-high-priority transactions could fill the space.
|
|
Remove the (relay/mempool) rule that all outputs of free transactions
must be greater than 0.01 XBT. Dust spam is now taken care of by making
dusty outputs non-standard.
|
|
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.
|
|
- prevents unneeded log messages, which could make users think something
bad was happening
|
|
[wallet] Consider generated coins mature at COINBASE_MATURITY+1
|
|
Bitcoin-Qt: add missing change from branch Qt_misc
|
|
fix #3049 by changing comment for CNetAddr::IsRFC4193()
|