aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | | | | | | | | | Merge pull request #1883 from sipa/norandstackWladimir J. van der Laan2012-09-295-36/+0
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | Remove stack randomization
| * | | | | | | | | | | | Remove stack randomizationPieter Wuille2012-09-285-36/+0
| | |_|_|/ / / / / / / / | |/| | | | | | | | | |
* | | | | | | | | | | | Merge pull request #1871 from jgarzik/wallet-deadcodeJeff Garzik2012-09-281-30/+0
|\ \ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / / |/| | | | | | | | | | | walletdb.h: remove dead code
| * | | | | | | | | | | walletdb.h: remove dead codeJeff Garzik2012-09-261-30/+0
| | | | | | | | | | | |
* | | | | | | | | | | | Merge pull request #1862 from kjj2/testportsPieter Wuille2012-09-282-3/+8
|\ \ \ \ \ \ \ \ \ \ \ \ | |_|_|/ / / / / / / / / |/| | | | | | | | | | | Fix: when testnet=1 specified, change default RPC port to 18332
| * | | | | | | | | | | Fix: when testnet=1 specified, change default ports to 18332 and 18333kjj22012-09-242-3/+8
| | |_|_|/ / / / / / / | |/| | | | | | | | |
* | | | | | | | | | | Merge pull request #1868 from maaku/and_or_xor_sign_extensionWladimir J. van der Laan2012-09-271-1/+23
|\ \ \ \ \ \ \ \ \ \ \ | |_|_|_|/ / / / / / / |/| | | | | | | | | | Documented bug in sign-extension behavior of opcodes OP_AND, OP_OR, and OP_XOR
| * | | | | | | | | | Documented bug in sign-extension behavior of opcodes OP_AND, OP_OR, and OP_XOR.Mark Friedenbach2012-09-251-1/+23
| | |/ / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | Due to a bug in the implementation of MakeSameSize(), using OP_AND, OP_OR, or OP_XOR with signed values of unequal size will result in the sign-value becoming part of the smaller integer, with nonsensical results. This patch documents the unexpected behavior and provides the basis of a solution should decision be made to fix the bug in the future.
* | | | | | | | | | Remove -Wformat* warnings from makefilesWladimir J. van der Laan2012-09-274-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | commit 5a1a3622 effectively enabled these warnings, but they need to be fixed before being enabled in the general build scripts.
* | | | | | | | | | Merge pull request #1807 from laanwj/2012_09_printf_warningsWladimir J. van der Laan2012-09-254-21/+64
|\ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / |/| | | | | | | | | Add printf-style warnings to strprintf() and OutputDebugStringF()
| * | | | | | | | | Add format characters for (s)size_t and ptrdiff_tWladimir J. van der Laan2012-09-101-0/+11
| | | | | | | | | |
| * | | | | | | | | HexStr: don't build a vector<char> firstWladimir J. van der Laan2012-09-104-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also const correctness for lookup tables in hex functions throughout the code.
| * | | | | | | | | Cleanup some unused macros from util.hWladimir J. van der Laan2012-09-092-5/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Encapsulate _snprintf/sprintf difference in implementation not header
| * | | | | | | | | Add printf-style warnings to strprintf() and OutputDebugStringF()Wladimir J. van der Laan2012-09-092-9/+42
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This finds about ~150 potential problems with format characters on a 64 bit build.
* | | | | | | | | | Merge pull request #1684 from jgarzik/bootstrapJeff Garzik2012-09-251-1/+14
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | Import $DataDir/bootstrap.dat automatically, if it exists.
| * | | | | | | | | | Import $DataDir/bootstrap.dat automatically, if it exists.Jeff Garzik2012-09-241-1/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As discussed on IRC. Intended to make using an external blockchain download solution just a bit easier.
* | | | | | | | | | | Update comment, we're no longer using boost::interprocess::scoped_lockWladimir J. van der Laan2012-09-251-1/+1
| | | | | | | | | | |
* | | | | | | | | | | Merge pull request #1854 from Diapolo/fix_1843_V2Wladimir J. van der Laan2012-09-251-1/+1
|\ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / |/| | | | | | | | | | additional fix for #1843
| * | | | | | | | | | additional fix for #1843Philip Kaufmann2012-09-221-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - a shortcut on "receive coins" was used twice
* | | | | | | | | | | Merge pull request #1836 from kjj2/stopdetachWladimir J. van der Laan2012-09-231-3/+8
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Adds a stopdetach <detach> RPC command. <detach> defaults to true. Wor...
| * | | | | | | | | | | Adds a stopdetach <detach> RPC command. <detach> defaults to true. Works ↵kjj22012-09-221-3/+8
| | |_|/ / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | just like stop, but overrides the commandline/config file -detachdb option. Useful for upgrading, for example. Lets you use fast stops usually, but force a detach when needed. Also, allows you to do a fast stop in a system normally configured for fast stops.
* | | | | | | | | | | Merge pull request #1853 from fanquake/qt-includeWladimir J. van der Laan2012-09-231-2/+2
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Update include for Qt5
| * | | | | | | | | | | Update Qt includefanquake2012-09-221-2/+2
| | |_|_|/ / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Update Qmenu include This is to be more consistent with the rest of the source Update Qt Includes
* | | | | | | | | | | Merge pull request #1852 from fanquake/bugreportlinksWladimir J. van der Laan2012-09-224-4/+4
|\ \ \ \ \ \ \ \ \ \ \ | |_|_|/ / / / / / / / |/| | | | | | | | | | Update links to Qt
| * | | | | | | | | | Update Bugreport Linksfanquake2012-09-224-4/+4
| |/ / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Update Qt Links Revert Qt source link Update Qt links
* | | | | | | | | | Merge pull request #1844 from Diapolo/Qt5_compat1Wladimir J. van der Laan2012-09-2210-26/+26
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | enhance Qt5 compatibility
| * | | | | | | | | | enhance Qt5 compatibilityPhilip Kaufmann2012-09-2110-26/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - replace Q_WS_MAC (not supported anymore in Qt5) with Q_OS_MAC (supported in Qt4/5)
* | | | | | | | | | | Remove unnecessary text from tooltip in AddressBookPageWladimir J. van der Laan2012-09-221-1/+1
| |/ / / / / / / / / |/| | | | | | | | |
* | | | | | | | | | fix #1843 by changing 2 GUI shortcutsPhilip Kaufmann2012-09-211-2/+2
|/ / / / / / / / /
* | | | | | | | | Merge pull request #1793 from Diapolo/fix_signed_unsigned_strprintfWladimir J. van der Laan2012-09-215-9/+9
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | fix signed/unsigned in strprintf and CNetAddr::GetByte()
| * | | | | | | | | fix signed/unsigned in strprintf and CNetAddr::GetByte()Philip Kaufmann2012-09-125-9/+9
| | |_|_|_|_|/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - I checked every occurance of strprintf() in the code and used %u, where unsigned vars are used - the change to GetByte() was made, as ip is an unsigned char
* | | | | | | | | comment update: it's -> itsWladimir J. van der Laan2012-09-211-1/+1
| | | | | | | | |
* | | | | | | | | Merge pull request #1705 from Diapolo/cleanup_bitcoinguiWladimir J. van der Laan2012-09-202-76/+26
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Qt: re-order GUI code and remove FIRST_CLASS_MESSAGING
| * | | | | | | | | Qt: re-order GUI codePhilip Kaufmann2012-08-291-33/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - re-order Qt Actions and connect() calls to match the real GUI layout, which makes things easier to read and understand - remove signMessageAction and verifyMessageAction from tabGroup as we didn't use them anyway (as tooltips are not displayed in the menu remove these too) - update 2 comments
| * | | | | | | | | remove FIRST_CLASS_MESSAGING support from the clientPhilip Kaufmann2012-08-292-43/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - removes the FIRST_CLASS_MESSAGING support from the client, which was no default setting anyway
* | | | | | | | | | Merge pull request #1810 from laanwj/2012_09_rpcconsole_eventfilterWladimir J. van der Laan2012-09-201-6/+26
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | Improve RPC console key event behaviour
| * | | | | | | | | | Improve RPC console key event behaviourWladimir J. van der Laan2012-09-091-6/+26
| | |_|_|/ / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Paging using PageUp / PageDown now works when entry widget has focus - Typing or pasting while the messages widget has focus auto-selects entry widget
* | | | | | | | | | Update gitignore and Makefiles for build.h move from src/ to src/objGavin Andresen2012-09-204-4/+3
| |_|_|_|_|/ / / / |/| | | | | | | |
* | | | | | | | | Merge pull request #1717 from Diapolo/Qt_change_TX_displayWladimir J. van der Laan2012-09-202-13/+3
|\ \ \ \ \ \ \ \ \ | |_|_|_|/ / / / / |/| | | | | | | | Qt: show mined transactions at depth 1
| * | | | | | | | Qt: show mined transactions at depth 1Philip Kaufmann2012-08-242-13/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - before, we used to show them in GUI when depth >= 2, which could lead to confusion of users, as the RPC behaviour already showed the Tx
* | | | | | | | | Merge branch 'testdata' of git://github.com/TheBlueMatt/bitcoinGavin Andresen2012-09-183-4/+67
|\ \ \ \ \ \ \ \ \
| * | | | | | | | | Add various tests for CTransaction::CheckTransaction()Matt Corallo2012-09-052-2/+59
| | | | | | | | | |
| * | | | | | | | | check tx.CheckTransaction for data-driven tx tests.Matt Corallo2012-09-051-2/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (and change so that only one case has to fail to make a tx_invalid test correct)
* | | | | | | | | | When rejected TX relay due to lack of fees, log full txidJeff Garzik2012-09-181-1/+1
| | | | | | | | | |
* | | | | | | | | | Trim trailing whitespace for src/*.{h,cpp}Jeff Garzik2012-09-1811-17/+17
| | | | | | | | | |
* | | | | | | | | | Merge branch 'master' of github.com:bitcoin/bitcoinGavin Andresen2012-09-182-49/+55
|\ \ \ \ \ \ \ \ \ \
| * \ \ \ \ \ \ \ \ \ Merge pull request #1812 from jgarzik/misc-07Jeff Garzik2012-09-182-49/+55
| |\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Two minor generic cleanups done during OP_DROP hacking
| | * | | | | | | | | | Improve debug logging, for mempool TXs that do not include sufficient feesJeff Garzik2012-09-091-2/+5
| | | | | | | | | | | |
| | * | | | | | | | | | Cosmetic: move CTransaction::GetMinFee out of header fileJeff Garzik2012-09-092-47/+50
| | | | | | | | | | | |
* | | | | | | | | | | | Give makefiles 'test' and 'check' targets to compile and run unit testsGavin Andresen2012-09-183-0/+11
|/ / / / / / / / / / /