- 29 Oct, 2013 1 commit
-
-
Wladimir J. van der Laan authored
Remove redundant insert method in serialize
-
- 28 Oct, 2013 12 commits
-
-
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 8 commits
-
-
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 5 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.
-
Philip Kaufmann authored
-
Pieter Wuille authored
1f3d3647 Send multiple inv messages if mempool.size > MAX_INV_SZ (Gavin Andresen)
-
Gavin Andresen authored
Changes the response to the 'mempool' command so that if the memory pool has more than MAX_INV_SZ transactions (50,000) it will respond with multiple 'inv' messages.
-
- 25 Oct, 2013 10 commits
-
-
Wladimir J. van der Laan authored
allow emit message() in sendcoinsdialog and walletview
-
Wladimir J. van der Laan authored
They're supposed to be children of the walletview, and are added with addWidget later on. Inconsequential change because the object passed was already 0.
-
Wladimir J. van der Laan authored
[Qt] additional small fix for #3099 (new receive flow)
-
Philip Kaufmann authored
- remove an obsolete connection to a signMessage() signal
-
Wladimir J. van der Laan authored
[Qt] misc small fixes for #3099 (new receive flow)
-
Philip Kaufmann authored
- changes some strings that were forgotton or made no sense in the conext they are used - remove an orphan file from the qt project file - revert a small change in signverifymessagedialog.ui - guard #include "bitcoin-config.h" with #if defined(HAVE_CONFIG_H) - remove windowTitle from addressbookpage.ui
-
Philip Kaufmann authored
- this allows us to use emit message() over MessageBox:: or gui->message() calls in sendcoinsdialog and walletview - move main handlePaymentRequest() functionality back to BitcoinGUI - move a showNormalIfMinimized() before gotoSendCoinsPage()
-
Wladimir J. van der Laan authored
qt: improve "receive coins" workflow
-
Wladimir J. van der Laan authored
- We no longer have an address book, but "address lists", update message accordingly - Add tooltips here and there - Clarify text on buttons - add Copy Address button to receive request dialog
-
Wladimir J. van der Laan authored
Qt: move paymentACK handling to paymentserver
-
- 24 Oct, 2013 4 commits
-
-
Wladimir J. van der Laan authored
paymentserver: init all class members in constructor
-
Philip Kaufmann authored
-
Philip Kaufmann authored
- add new slot handlePaymentACK() to paymentserver, which handles paymentACK messages (currently we just display them) - make paymentACK message a modal information dialog - change some QObject::tr() to just tr() - clarify the processPaymentRequest() error, when IsDust() - small string change to prevent a tripple + usage with QString
-
Wladimir J. van der Laan authored
bitcoingui: show main window (if hidden) on modal messages
-