Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-06-25 | Update comments | Michael Ford | |
2012-06-24 | Merge pull request #1517 from Diapolo/fix_comment | Pieter Wuille | |
fix a comment to correctly use -upgradewallet | |||
2012-06-24 | fix a comment to correctly use -upgradewallet | Philip Kaufmann | |
2012-06-24 | Document -debugnet option in command line help. | Jeff Garzik | |
Fixes #1507 | |||
2012-06-24 | On Windows link with `mswsock`, it being required (indirectly) by RPC code | Giel van Schijndel | |
Signed-off-by: Giel van Schijndel <me@mortis.eu> | |||
2012-06-24 | Cancel outstanding listen ops for RPC when shutting down | Giel van Schijndel | |
Use Boost's signal2 slot tracking mechanism to cancel any (still open) listening sockets when receiving a shutdown signal. Signed-off-by: Giel van Schijndel <me@mortis.eu> | |||
2012-06-24 | Merge branch 'master' into async-ipv6-rpc | Giel van Schijndel | |
2012-06-23 | Merge pull request #1174 from sipa/torhs | Gregory Maxwell | |
Tor hidden service support | |||
2012-06-23 | Merge pull request #1503 from gmaxwell/testnet_tweaks | Gregory Maxwell | |
Remove some rule differences which aren't needed with testnet3. | |||
2012-06-23 | Quieten 'getdata' P2P message output | Jeff Garzik | |
Output one message per getdata, not one message per 'inv' entry. | |||
2012-06-23 | Changed a comment about a QVariant type | xanatos | |
2012-06-23 | Some documentation about tor | Pieter Wuille | |
2012-06-23 | Debug version messages | Pieter Wuille | |
2012-06-23 | Add -tor and related configuration | Pieter Wuille | |
2012-06-23 | Rewrite CNetAddr::GetReachabilityFrom() | Pieter Wuille | |
Add support for Tor/I2P networks, and make code more readable. | |||
2012-06-23 | Node support for Tor hidden services | Pieter Wuille | |
This commit adds support for .onion addresses (mapped into the IPv6 by using OnionCat's range and encoding), and the ability to connect to them via a SOCKS5 proxy. | |||
2012-06-22 | Merge pull request #1458 from jgarzik/tracenet | Jeff Garzik | |
Introduce -tracenet option, thereby quieting some redundant debug messages | |||
2012-06-22 | Introduce -debugnet option, thereby quieting some redundant debug messages | Jeff Garzik | |
Prior to this change, each TX typically generated 3+ debug messages, askfor tx 8644cc97480ba1537214 0 sending getdata: tx 8644cc97480ba1537214 askfor tx 8644cc97480ba1537214 1339640761000000 askfor tx 8644cc97480ba1537214 1339640881000000 CTxMemPool::accept() : accepted 8644cc9748 (poolsz 6857) After this change, there is only one message for each valid TX received CTxMemPool::accept() : accepted 22a73c5d8c (poolsz 42) and two messages for each orphan tx received ERROR: FetchInputs() : 673dc195aa mempool Tx prev not found 1e439346fc stored orphan tx 673dc195aa (mapsz 19) The -debugnet option, or its superset -debug, will restore the full debug output. | |||
2012-06-22 | Merge pull request #1502 from jgarzik/getrawmempool | Jeff Garzik | |
RPC: add 'getrawmempool', listing all transaction ids in memory pool | |||
2012-06-22 | Remove some rule differences which aren't needed with testnet3. | Gregory Maxwell | |
Bip16 and Bip30 had early activation dates for testnet, but with the reset they might as well use the same dates as the main network. | |||
2012-06-22 | RPC: add 'getrawmempool', listing all transaction ids in memory pool | Jeff Garzik | |
2012-06-22 | Merge pull request #1495 from Diapolo/fix_CKey_mem_leak | Gregory Maxwell | |
fix a memory leak in key.cpp | |||
2012-06-22 | Unit tests for base32 encode/decode | Pieter Wuille | |
2012-06-22 | Base32 encoding/decoding | Pieter Wuille | |
2012-06-22 | Small fix to rpc_tests | xanatos | |
2012-06-21 | Merge pull request #1490 from luke-jr/gd_ljr_key | Gregory Maxwell | |
gitian-downloader: Update luke-jr's key | |||
2012-06-21 | Merge pull request #1496 from xanatos/patch-2 | Gavin Andresen | |
= instead of == in multisig_tests.cpp | |||
2012-06-21 | = instead of == in multisig_tests.cpp | xanatos | |
2012-06-21 | fix a memory leak in key.cpp | Philip Kaufmann | |
- add EC_KEY_free() in CKey::Reset() when pkey != NULL - init pkey with NULL in CKey constructor | |||
2012-06-21 | Update master | Michael Ford | |
2012-06-20 | gitian-downloader: Update luke-jr's key | Luke Dashjr | |
2012-06-20 | Update my GPG key | Pieter Wuille | |
2012-06-20 | Merge pull request #1488 from sipa/noowner | Jeff Garzik | |
Remove CTxDB::ReadOwnerTxes. | |||
2012-06-20 | Remove CTxDB::ReadOwnerTxes. | Pieter Wuille | |
It seems it wasn't ever used since 0.1.5. | |||
2012-06-19 | Merge pull request #1483 from Diapolo/txtablemodel_updateDisplayUnit | Wladimir J. van der Laan | |
GUI: ensure a changed bitcoin unit immediately updates the tx list amounts | |||
2012-06-20 | GUI: ensure a changed bitcoin unit immediately updates the tx list amounts | Philip Kaufmann | |
2012-06-19 | print large orphan warning BEFORE deleting pvMsg | Gavin Andresen | |
2012-06-19 | Merge pull request #1485 from xanatos/patch-1 | Pieter Wuille | |
Small logical error in mruset | |||
2012-06-19 | If (for example) the new max_size must be 5 then at the end the queue.size() ↵ | xanatos | |
must be <= 5, so the exit condition must be <=, so the continuing condition must be > (and not >= as it was). | |||
2012-06-19 | Fix netbase tests | Pieter Wuille | |
* Do not rely on "a.b.c" being interpreted as "a.0.b.c" * Parse numeric addresses for address families for which no device is configured | |||
2012-06-18 | CBigNum: Convert negative int64 values in a more well-defined way | Luke Dashjr | |
Since the minimum signed integer cannot be represented as positive so long as its type is signed, and it's not well-defined what happens if you make it unsigned before negating it, we instead increment the negative integer by 1, convert it, then increment the (now positive) unsigned integer by 1 to compensate | |||
2012-06-18 | Merge pull request #1399 from sipa/ipparse | Gavin Andresen | |
Improve parsing of IPv6 addresses | |||
2012-06-18 | Merge branch 'master' of https://github.com/fanquake/bitcoin | Gavin Andresen | |
2012-06-18 | Merge branch 'signbugs' of https://github.com/wizeman/bitcoin | Gavin Andresen | |
Resolved minor conflict in main.cpp | |||
2012-06-18 | OS X not OSX | fanquake | |
2012-06-18 | Further updates to build instructions | fanquake | |
2012-06-18 | Merge pull request #1480 from fanquake/master | Gavin Andresen | |
Update OSX build instructions | |||
2012-06-18 | Update OSX build instructions | Fordy | |
2012-06-17 | Merge pull request #1477 from gmaxwell/master | Pieter Wuille | |
Fix inverted logic for !Discover/!UPNP when !Listen. | |||
2012-06-17 | *Always* send a shutdown signal to enable custom shutdown actions | Giel van Schijndel | |
NOTE: This is required to be sure that we can properly shut down the RPC thread. Signed-off-by: Giel van Schijndel <me@mortis.eu> |