aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | | | | | | | | Merge pull request #1232 from TheBlueMatt/lockcontentionGregory Maxwell2012-05-091-1/+3
|\ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / |/| | | | | | | | | | Fix DEBUG_LOCKCONTENTION
| * | | | | | | | | | Fix DEBUG_LOCKCONTENTIONMatt Corallo2012-05-091-1/+3
| | | | | | | | | | |
* | | | | | | | | | | harmonize the use of ellipsis ("...") to be used in menus, but not on ↵Philip Kaufmann2012-05-095-9/+9
| |_|/ / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | buttons / update some strings to be more informative
* | | | | | | | | | Merge pull request #1215 from laanwj/2012_05_nogridtablesWladimir J. van der Laan2012-05-082-10/+25
|\ \ \ \ \ \ \ \ \ \ | |_|_|/ / / / / / / |/| | | | | | | | | Make user actions more straightforward in address book
| * | | | | | | | | Make user action more straightforward in address bookWladimir J. van der Laan2012-05-072-10/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Add all actions that can be triggered with buttons to the context menu - Hide delete action from context menu for receiving tab
* | | | | | | | | | remove 2 ugly spaces from a string used in translationsPhilip Kaufmann2012-05-091-1/+1
| |_|/ / / / / / / |/| | | | | | | |
* | | | | | | | | Revert part of 1302257e: don't update CXXFLAGS, only xCXXFLAGSJeff Garzik2012-05-081-1/+1
| | | | | | | | |
* | | | | | | | | makefile.unix: add -Wall to default CXXFLAGSJeff Garzik2012-05-081-2/+2
| |_|_|_|/ / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Additionally, remove -Wno-sign-compare from alt CXXFLAGS, as that is no longer a problem.
* | | | | | | | Merge branch 'tmp-ipv6' into merge-ipv6Jeff Garzik2012-05-089-183/+558
|\ \ \ \ \ \ \ \
| * | | | | | | | Added -externalip and -discoverPieter Wuille2012-05-043-22/+47
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | -externalip=<ip> can be used to explicitly set the public IP address of your node. -discover=0 can be used to disable the automatic public IP discovery system.
| * | | | | | | | Support for multiple local addressesPieter Wuille2012-05-048-88/+187
| | | | | | | | |
| * | | | | | | | Add -seednode connections, and use this for -dnsseed + -proxydnsPieter Wuille2012-05-044-9/+45
| | | | | | | | |
| * | | | | | | | Support connecting by hostnames passed to proxy (-proxydns)Pieter Wuille2012-05-045-69/+145
| | | | | | | | |
| * | | | | | | | refactor ConnectSocketPieter Wuille2012-05-041-9/+25
| | | | | | | | |
| * | | | | | | | SOCKS5 connect via hostnamePieter Wuille2012-05-041-26/+9
| | | | | | | | |
| * | | | | | | | SOCKS5 support by defaultPieter Wuille2012-05-042-29/+169
| |/ / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add -socks=<n> to select SOCKS version to use. 4 and 5 are supported, 5 is default.
* | | | | | | | Merge pull request #886 from luke-jr/getblock_fullGregory Maxwell2012-05-081-25/+199
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | More details for getblock and gettransaction
| * | | | | | | | Support for decomposing scripts as "obj"Luke Dashjr2012-05-081-0/+74
| | | | | | | | |
| * | | | | | | | Second parameter to JSON-RPC getblock/gettransaction: decompositionsLuke Dashjr2012-05-081-25/+122
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is an Object specifying how to decompose specific elements. Currently supported: - "tx": "no", "hash", "hex", "obj" - "script": "no", "hex", "asm"
| * | | | | | | | Add block "confirmations" to getblock, mainly for identifying orphansLuke Dashjr2012-05-081-0/+3
| | |/ / / / / / | |/| | | | | |
* / | | | | | | remove 2 obsolete functions from init.h that moved to util.hPhilip Kaufmann2012-05-081-3/+0
|/ / / / / / /
* | | | | | | Merge pull request #1180 from jgarzik/sign-compareJeff Garzik2012-05-084-11/+11
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Fix final sign comparison warnings
| * | | | | | | EvalScript(): cast to avoid signed/unsigned warningJeff Garzik2012-05-011-3/+3
| | | | | | | |
| * | | | | | | ThreadSocketHandler2(): cast to avoid signed/unsigned warningJeff Garzik2012-05-011-1/+1
| | | | | | | |
| * | | | | | | OpenBlockFile(): cast to eliminate signed/unsigned comparison warningJeff Garzik2012-05-011-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | nFile's null value is -1. Cast that to unsigned int, to avoid warning. Additionally, avoid nFile==0 because the first valid value is 1.
| * | | | | | | CDiskTxPos, CInPoint, COutPoint: cast null value (-1) to unsigned intJeff Garzik2012-05-011-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | to eliminate signed/unsigned comparison warnings
* | | | | | | | Merge pull request #841 from sipa/getalltransactionsGregory Maxwell2012-05-083-16/+107
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | gettransaction RPC for non-wallet transactions
| * | | | | | | | gettransaction RPC for non-wallet transactionsPieter Wuille2012-04-183-16/+107
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Works for wallet transactions, memory-pool transaction and block chain transactions. Available for all: * txid * version * locktime * size * coinbase/inputs/outputs * confirmations Available only for wallet transactions: * amount * fee * details * blockindex Available for wallet transactions and block chain transactions: * blockhash * time
* | | | | | | | | Merge pull request #883 from sipa/loadblockGregory Maxwell2012-05-084-3/+72
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Add -loadblock to load from an external blk000?.dat file
| * | | | | | | | | -loadblock to load from an external blk000?.dat filePieter Wuille2012-04-224-3/+72
| | | | | | | | | |
* | | | | | | | | | Merge pull request #1075 from laanwj/2012_04_consoleuiGregory Maxwell2012-05-089-76/+827
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | Add UI RPC console / debug window
| * | | | | | | | | | Add UI RPC console / debug windowWladimir J. van der Laan2012-05-059-76/+827
| | | | | | | | | | |
* | | | | | | | | | | Increase client version to 0.6.99Gregory Maxwell2012-05-081-2/+2
| | | | | | | | | | |
* | | | | | | | | | | Merge pull request #1219 from luke-jr/rm_fee_tipWladimir J. van der Laan2012-05-071-1/+0
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Bitcoin-Qt: Remove redundant tooltip on optional transaction fee. Fixes #1218
| * | | | | | | | | | | Bitcoin-Qt: Remove redundant tooltip on optional transaction fee. Fixes #1218Luke Dashjr2012-05-071-1/+0
| | | | | | | | | | | |
* | | | | | | | | | | | Merge pull request #1196 from sipa/fix_948Gregory Maxwell2012-05-061-2/+14
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | Prevent stuck download: correct solution
| * | | | | | | | | | | | Prevent stuck download: correct solutionPieter Wuille2012-05-061-2/+14
| | |_|_|_|_|_|/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Pull request #948 introduced a fix for nodes stuck on a long side branch of the main chain. The fix was non-functional however, as the additional getdata request was created in a first step of processing, but dropped in a second step as it was considered redundant. This commits fixes it by sending the request directly.
* | | | | | | | | | | | Move back setPlaceholderText to code, from xml, as this broke building with ↵Wladimir J. van der Laan2012-05-074-10/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Qt 4.6
* | | | | | | | | | | | Merge pull request #1189 from Diapolo/fix#952Wladimir J. van der Laan2012-05-061-3/+10
|\ \ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / / |/| | | | | | | | | | | fix for #952 (send coins tab glitch)
| * | | | | | | | | | | fix #952 by checking if we have a new address or an updated labelPhilip Kaufmann2012-05-041-3/+10
| | |/ / / / / / / / / | |/| | | | | | | | |
* | | | | | | | | | | Merge pull request #1209 from laanwj/2012_05_hideonshutdownWladimir J. van der Laan2012-05-051-0/+1
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Hide UI immediately after leaving the main loop
| * | | | | | | | | | | Hide UI immediately after leaving the main loop.Wladimir J. van der Laan2012-05-061-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Prevents it from seeming to hang during shutdown if shutdown is triggered while the window is open.
* | | | | | | | | | | | Merge pull request #1207 from sipa/fix_addrmanGregory Maxwell2012-05-052-3/+25
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | Fix addrman crashes
| * | | | | | | | | | | | Bugfix: store source address in addrmanPieter Wuille2012-05-051-1/+1
| | | | | | | | | | | | |
| * | | | | | | | | | | | Fix addrman crashesPieter Wuille2012-05-051-2/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A function returned the element to remove from a bucket, instead of its position in that bucket. This function was only called when a tried bucket overflowed, which only happens after many outgoing connections have been made. Closes: #1065, #1156
| * | | | | | | | | | | | Add extra asserts to addrmanPieter Wuille2012-05-051-0/+19
| | | | | | | | | | | | |
* | | | | | | | | | | | | Merge pull request #1160 from retep/masterGregory Maxwell2012-05-051-3/+5
|\ \ \ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / / / |/| | | | | | | | | | | | Minor error message fix
| * | | | | | | | | | | | Fixed non-sensical error messagePeter Todd2012-05-041-3/+5
| | |_|_|_|_|_|/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously trying to create a multisig address that required less than one signature would output something like the following: "wrong number of keys(got 1, need at least 0)"
* | | | | | | | | | | | Bugfix: %-12I64d is not valid and causes the parameter to be skipped, use ↵Luke Dashjr2012-05-052-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | %12"PRI64d" instead
* | | | | | | | | | | | Merge pull request #1201 from Diapolo/about-dialogWladimir J. van der Laan2012-05-051-3/+9
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | changed cursor for selectable text on the about dialog to IBeamCursor...