- 31 Oct, 2013 3 commits
-
-
Pieter Wuille authored
As block index entries have a flag for marking invalid blocks, the 'best invalid work' information can be derived from there. In addition, remove the global from main.h
-
Wladimir J. van der Laan authored
9eb4ab66 transactionview: make exportClicked() use message() (Philip Kaufmann) 868d3ee5 transactionview: add message() signal (Philip Kaufmann)
-
Wladimir J. van der Laan authored
71ba4670 [Qt] sendcoinsdialog: convert QMessageBox usage to message() (Philip Kaufmann)
-
- 30 Oct, 2013 9 commits
-
-
Gavin Andresen authored
re-work -debug switch handling
-
Philip Kaufmann authored
- add new processSendCoinsReturn() function, which parses the status of WalletModel::SendCoinsReturn and generates a pair consisting of a message and message flags - result is we only need one emit message() call - this change ensures that the GUI is shown for warnings/errors in sendcoinsdialog, because of message() taking care of that for modal messages - changes 2 warning message into error messages and removed "Error:" in front of the actual error message string
-
Philip Kaufmann authored
- use message() for displaying success or failure of export - rework the strings to be more detailed / informative - additional small cleanups
-
Philip Kaufmann authored
- allow to use message() in transactionview by connecting to the message() signal in WalletView
-
Wladimir J. van der Laan authored
[Qt] walletview: make backupWallet() use GUIUtil::getSaveFileName()
-
Philip Kaufmann authored
- re-work -debug help message text - make -debug log every debugging information again (even all categories) - remove unneeded fDebug checks in front of LogPrint()/qDebug(), as that check is done in LogPrintf() when category is != NULL (true for all LogPrint() calls - remove fDebug ONLY in code which is NOT performance-critical - harmonize addrman category name - deprecate -debugnet usage, should be used via -debug=net and remove the corresponding global
-
Gavin Andresen authored
fix wrong memcmp() usage in CKey::operator==
-
Gavin Andresen authored
-fuzzmessagestest=N : randomly corrupt 1-of-N sent messages
-
Gavin Andresen authored
Interaction cleanups between main and wallet
-
- 29 Oct, 2013 3 commits
-
-
Wladimir J. van der Laan authored
Remove redundant insert method in serialize
-
Gavin Andresen authored
I needed this to test the new "reject" p2p message, but it should be generally useful for fuzz-testing network message handling code.
-
Gavin Andresen authored
Changed CDataStream::GetAndClear() to use the most obvious get get and clear instead of a tricky swap(). Added a unit test for CDataStream insert/erase/GetAndClear. Note: GetAndClear() is not performance critical, it is used only by the send-a-message-to-the-network code. Bug was not noticed before now because the send-a-message code never erased from the stream.
-
- 28 Oct, 2013 13 commits
-
-
Philip Kaufmann authored
- add a check for CKey::size() of a and b (size can be 0 or 32) - change the fixed value in memcmp() to use a.size() instead - fixes #3090
-
Gregory Maxwell authored
Generalize the remove-outputs check for fully-prunable transactions.
-
Pieter Wuille authored
Instead of explicitly testing for the presence of any output, and dealing with this case specially, just interpret it as an empty CCoins. The case previously caught using the HaveCoins check, is now handled by the generic outs != outsBlock test.
-
Wladimir J. van der Laan authored
Use a GridLayout instead of a FormLayout. This makes the alignment of the labels consistent between the tabs.
-
Wladimir J. van der Laan authored
Missed RPC port
-
Matt Corallo authored
-
Wladimir J. van der Laan authored
Re-enable Jenkins and run more tests on Jenkins than pull-tester gets
-
Matt Corallo authored
-
Matt Corallo authored
-
Matt Corallo authored
-
Gavin Andresen authored
Re-enable BitcoindComparisonTool on pull-tester
-
Matt Corallo authored
-
Matt Corallo authored
-
- 27 Oct, 2013 10 commits
-
-
Philip Kaufmann authored
-
Philip Kaufmann authored
- this allows removal of several Qt headers and makes use of a standardized function in GUIUtil - adds selected path to the UI output
-
Wladimir J. van der Laan authored
GUIUtil: make getSaveFileName() use native OS path separators
-
Wladimir J. van der Laan authored
qt: english language update
-
Wladimir J. van der Laan authored
-
Wladimir J. van der Laan authored
[Qt] additional small fixes for #3099 (new receive flow)
-
Wladimir J. van der Laan authored
qt: clean up signal handling in walletframe/walletview
-
Wladimir J. van der Laan authored
Use proper signals everywhere. Removes the need to store a pointer to the BitcoinGUI object in the walletview. Also removes the interdependence between setWalletModel / setBitcoinGUI.
-
Matt Corallo authored
* Use the latest version, with limited memory usage, and path to on-disk db (try mouting qa/tmp on a tmpfs)\ * enable -debug=net * re-enable BitcoindComparisonTool in pull-tester
-
Matt Corallo authored
-
- 26 Oct, 2013 2 commits
-
-
Philip Kaufmann authored
- remove 2 unneeded windowTitle attributes, which bloat our translations - cleanup some unneeded .cpp/.h includes and class usages - use a more generic string for clearing sendcoinsdialog and requestpaymentdialog - edit 2 strings in BitcoinGUI and replace "edit" with "show" as this seems more clear in the context where it is used
-
Pieter Wuille authored
This seems to cause problems on recent clang, and looks totally redundant and unused. The const_iterator version is identical to the vector::const_iterator one (which is a typedef thereof). Marking it private (instead of removing) compiles fine, so this version is effectively unused even.
-