Age | Commit message (Collapse) | Author |
|
|
|
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
|
|
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
|
|
|
|
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()
|
|
rename bitcoin-res.rc to bitcoind-res.rc
|
|
log start and end of Shutdown()
|
|
- helps recognizing that the resource file belongs to bitcoind.exe
|
|
|
|
|
|
- could be helpful when debugging shutdown related problems
|
|
a pre-req for no-wallet support.
|
|
notably RPC.
|
|
Bitcoin-Qt: translation fixes in sendcoins
|
|
Add getnetworkhashps to get the estimated network hashrate
|
|
- remove some unneeded translatable strings from sendcoinsentry.ui file and
rename some elements for better readability
- optimize string prorcessing in SendCoinsDialog::on_sendButton_clicked()
- make all UI labels for secure payments plain text and move the settings
to sendcoinsentry.ui file
- remove unneeded button and default button definiton from warning message
boxes
- remove fixed font-size when sending coins to an address with label and
use monospace font for addresses
|
|
- remove an unneeded debug message in walletframe
|
|
|
|
Win32 version info
|
|
- make BitcoinGUI::showPaymentACK() use a reference for msg and use our
own GUIUtil::HtmlEscape() function
- ensure QTimer usage in clientmodel is the same as in walletmodel
- remove an unneeded debug message in walletframe
- flag some parameters as unused in DebugMessageHandler()
- small code formatting changes
|
|
internal miner: move 2 globals from main to miner
|
|
GUI: fix sendcoinsdialog/sendcoinsentry
|
|
- moves 2 global variables from main.cpp/h to miner.cpp/h
- also removes 2 unneded includes in miner.cpp, that come from miner.h
already
|
|
|
|
|
|
Prune provably-unspendable outputs
|
|
Use 'low S' as malleability breaker rather than 'even S'
|
|
[raw] reject insanely high fees by default in sendrawtransaction
|
|
Bitcoin-Qt: BitcoinGUI::message() updates/fixes
|
|
|
|
|
|
|
|
|
|
TODO: Add icon info
|
|
This way we can reuse rules rather than duplicating them.
|
|
If BDB_CPPFLAGS returns only "-I", the next argument sent to the preprocessor
is treated as a path. There are 2 fixes here:
1. Check in CPPFLAGS, as a user might have manually passed a path to check.
2. Ensure the value is not empty before setting BDB_CPPFLAGS to "-I value"
|