Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-05-04 | Support connecting by hostnames passed to proxy (-proxydns) | Pieter Wuille | |
2012-05-04 | refactor ConnectSocket | Pieter Wuille | |
2012-05-04 | SOCKS5 connect via hostname | Pieter Wuille | |
2012-05-04 | SOCKS5 support by default | Pieter Wuille | |
Add -socks=<n> to select SOCKS version to use. 4 and 5 are supported, 5 is default. | |||
2012-05-04 | fix #952 by checking if we have a new address or an updated label | Philip Kaufmann | |
2012-05-04 | Fixed non-sensical error message | Peter Todd | |
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)" | |||
2012-05-03 | remove obsolete BackupWallet() entry in wallet.h | Philip Kaufmann | |
2012-05-03 | add a clear all button to the sign message page | Philip Kaufmann | |
2012-05-02 | Update to require IE 5.1 as it is required on mingw64. | Matt Corallo | |
We already require XP, this just fixes Mingw64 build. | |||
2012-05-01 | Merge pull request #1171 from Diapolo/fix_compiler_warn | Jeff Garzik | |
fix 2 compiler warnings | |||
2012-05-01 | EvalScript(): cast to avoid signed/unsigned warning | Jeff Garzik | |
2012-05-01 | ThreadSocketHandler2(): cast to avoid signed/unsigned warning | Jeff Garzik | |
2012-05-01 | OpenBlockFile(): cast to eliminate signed/unsigned comparison warning | Jeff Garzik | |
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. | |||
2012-05-01 | CDiskTxPos, CInPoint, COutPoint: cast null value (-1) to unsigned int | Jeff Garzik | |
to eliminate signed/unsigned comparison warnings | |||
2012-05-01 | Merge pull request #1177 from laanwj/2012_05_remove_duplicate_securestring | Jeff Garzik | |
remove duplicate definition of SecureString in util.h | |||
2012-05-01 | Merge pull request #1172 from Diapolo/serialize_h_rem_typedef | Wladimir J. van der Laan | |
remove unused typedef in serialize.h | |||
2012-05-01 | remove duplicate definition of SecureString in util.h | Wladimir J. van der Laan | |
SecureString was moved to allocators.h in commit 6cb6d623479c5dd42d91de7a4d391078d0800e54 | |||
2012-05-01 | small translation-file handling / loading changes and re-work comments to be ↵ | Philip Kaufmann | |
clearer | |||
2012-05-01 | fix compiler warning "suggest parentheses around assignment used as truth | Philip Kaufmann | |
value [-Wparentheses]" in util.cpp | |||
2012-05-01 | fix compiler warning "suggest explicit braces to avoid ambiguous "else" | Philip Kaufmann | |
[-Wparentheses]" in net.cpp | |||
2012-05-01 | remove references to bitcoin-wx from comment in init.cpp | Philip Kaufmann | |
2012-05-01 | remove unused typedef in serialize.h | Philip Kaufmann | |
2012-04-30 | Check earlier for blocks with duplicate transactions. Fixes #1167v0.6.1rc2 | Gavin Andresen | |
2012-04-29 | Merge pull request #1139 from Diapolo/messagepage | Wladimir J. van der Laan | |
change button tooltip on sign message page for copy to clipboard... | |||
2012-04-29 | Fix critical UI performance issue (#1154) | Wladimir J. van der Laan | |
2012-04-27 | Update openssl versionv0.6.1rc1 | Gavin Andresen | |
2012-04-27 | Bump version numbers for 0.6.1rc1 | Gavin Andresen | |
2012-04-26 | Merge pull request #1151 from freewil/listsinceblock-blockhash | Gavin Andresen | |
listsinceblock: rpc param blockid -> blockhash | |||
2012-04-26 | Merge pull request #1150 from gavinandresen/NOPCH | Gavin Andresen | |
Remove unused -DNOPCH | |||
2012-04-26 | Merge pull request #1152 from freewil/remove-strange-debug | Gavin Andresen | |
remove strange debug message from listsinceblock | |||
2012-04-26 | Merge pull request #1146 from drizztbsd/posix-include | Pieter Wuille | |
We should include netinet/in.h to use sockaddr_in (POSIX.1-2001) | |||
2012-04-26 | remove strange debug message from listsinceblock | freewil | |
2012-04-26 | listsinceblock: rpc param blockid -> blockhash | freewil | |
This is more consistent with the rest of the labeling seen by the user when accessing the rpc commands. | |||
2012-04-26 | Define TEST_DATA_DIR so unit tests can be run from any current working directory | Gavin Andresen | |
2012-04-26 | Undo part of c2e8c8ac to fix issue#1148 | Gavin Andresen | |
2012-04-25 | Remove unused -DNOPCH | Gavin Andresen | |
2012-04-26 | Make lsn_reset ("detach databases") optional and off by default. | Pieter Wuille | |
Add an option -detachdb (and entry in OptionDialog), without which no lsn_reset is called on addr.dat and blkindex.dat. That means these files cannot be moved to a new environment, but shutdown can be significantly faster. The wallet file is always lsn_reset'ed. -detachdb corresponds to the old behaviour, though it is off by default now to speed up shutdowns. | |||
2012-04-25 | We should include netinet/in.h to use sockaddr_in (POSIX.1-2001) | Timothy Redaelli | |
2012-04-23 | Merge pull request #1140 from jgarzik/sign-compare | Jeff Garzik | |
Address many more sign comparison warnings | |||
2012-04-23 | Change signed->unsigned at 3 code sites | Jeff Garzik | |
This resolves signed/unsigned comparison warnings. | |||
2012-04-23 | CBlock::WriteToDisk() properly checks ftell(3) for error return | Jeff Garzik | |
Rather than storing ftell(3)'s return value -- a long -- in an unsigned int, we store and check a properly typed temp. Then, assured a non-negative value, we store in nBlockPosRet. | |||
2012-04-23 | Add casts for unavoidable signed/unsigned comparisons | Jeff Garzik | |
At these code sites, it is preferable to cast rather than change a variable's type. | |||
2012-04-23 | Test ScriptSigArgsExpected() for error, before accumulating return value | Jeff Garzik | |
2012-04-23 | SigOp and orphan-tx constants and counts are always unsigned. | Jeff Garzik | |
Fixes several sign-comparison warnings. | |||
2012-04-22 | Prefer 'unsigned int' for loop index variables tested against ::size() | Jeff Garzik | |
C++ STL ::size() generally returns unsigned, which implies that "int idx" style of loop variable will generate a signed-vs-unsigned comparison warning when testing the loop exit condition "idx < blah.size()" Update areas of the bitcoin code where loop variables may be more properly and correctly defined as unsigned. | |||
2012-04-22 | change button tooltip on sign message page for copy to clipboard as it was ↵ | Philip Kaufmann | |
missleading | |||
2012-04-22 | Make GetDataDir return absolute paths | Pieter Wuille | |
2012-04-22 | -loadblock to load from an external blk000?.dat file | Pieter Wuille | |
2012-04-21 | Merge pull request #1124 from sipa/rpcobj3 | Pieter Wuille | |
extension of #1103: encapsulate mapCommands in CRPCTable | |||
2012-04-21 | Merge pull request #1131 from laanwj/2012_04_hexstr | Pieter Wuille | |
Integrate @JoelKatz's optimized ToHex (#562) into current HexStr function |