aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Check earlier for blocks with duplicate transactions. Fixes #1167v0.6.1rc2Gavin Andresen2012-04-301-0/+10
|
* Add casts for unavoidable signed/unsigned comparisonsJeff Garzik2012-04-231-5/+5
| | | | | At these code sites, it is preferable to cast rather than change a variable's type.
* Test ScriptSigArgsExpected() for error, before accumulating return valueJeff Garzik2012-04-231-2/+9
|
* SigOp and orphan-tx constants and counts are always unsigned.Jeff Garzik2012-04-231-11/+11
| | | | Fixes several sign-comparison warnings.
* Merge remote-tracking branch 'jgarzik/mempool'Pieter Wuille2012-04-171-71/+72
|\
| * CTxMemPool: add helper methods, to reduce global mempool.mapTx accessesJeff Garzik2012-04-151-8/+16
| |
| * CTxMemPool: encapsulate AcceptToMemoryPoolJeff Garzik2012-04-151-40/+46
| |
| * CTxMemPool: encapsulate AddToMemoryPoolUnchecked(), RemoveFromMemoryPool(),Jeff Garzik2012-04-151-23/+19
| | | | | | | | and nPooledTx
| * New class CTxMemPool, encapsulating TX memory pool data membersJeff Garzik2012-04-151-30/+29
| |
* | Merge pull request #1117 from sipa/deadlockfixPieter Wuille2012-04-171-2/+2
|\ \ | | | | | | Fix potential deadlock
| * | Fix potential deadlockPieter Wuille2012-04-171-2/+2
| |/ | | | | | | | | | | | | | | | | | | | | | | Conflict: * cs_main in ProcessMessages() (before calling ProcessMessages) * cs_vSend in CNode::BeginMessage versus: * cs_vSend in ThreadMessageHandler2 (before calling SendMessages) * cs_main in SendMessages Even though cs_vSend is a try_lock, if it succeeds simultaneously with the locking of cs_main in ProcessMessages(), it could cause a deadlock.
* | Further reduce header dependenciesPieter Wuille2012-04-171-9/+9
| | | | | | | | | | | | | | This commit removes the dependency of serialize.h on PROTOCOL_VERSION, and makes this parameter required instead of implicit. This is much saner, as it makes the places where changing a version number can have an influence obvious.
* | Remove headers.hPieter Wuille2012-04-171-1/+1
| |
* | Merge pull request #1106 from jgarzik/sign-compareGavin Andresen2012-04-171-19/+19
|\ \ | | | | | | Fix many sign-comparison warnings found in bitcoin codebase
| * | Fix loop index var types, fixing many minor sign comparison warningsJeff Garzik2012-04-151-19/+19
| |/ | | | | | | | | foo.size() typically returns an unsigned integral type; make loop variables match those types' signedness.
* | main.cpp: replace tabs with spacesJeff Garzik2012-04-171-5/+5
| | | | | | | | Sometimes they sneak in through the 'vi' door
* | AlreadyHave(): only hold lock during mapTransactions accessJeff Garzik2012-04-171-2/+6
| |
* | Merge pull request #1094 from jgarzik/already-have-lockingJeff Garzik2012-04-171-2/+11
|\ \ | | | | | | Locking fix for AlreadyHave()
| * | Locking fix for AlreadyHave()Jeff Garzik2012-04-131-2/+11
| | | | | | | | | | | | | | | | | | Access to mapTransactions[] must be guarded by cs_mapTransactions lock. Also, reformat long lines to make the switch statement more readable.
* | | Merge pull request #1081 from jgarzik/pongJeff Garzik2012-04-171-8/+31
|\ \ \ | |_|/ |/| | BIP 0031: pong message
| * | Replace several network protocol version numbers with named constantsJeff Garzik2012-04-121-5/+6
| | | | | | | | | | | | | | | | | | | | | stored in version.h. Also, a minor CAddress code reformat while we're in there, fixing some incorrect indentation.
| * | BIP 0031: pong messageJeff Garzik2012-04-121-3/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add a pong message that is sent in reply to a ping. It echoes back a nonce field that is now added to the ping message. Send a nonce of zero in ping messages. Original author: Mike Hearn @ Google Modified Mike's change to introduce a mild form of protocol documentation in version.h.
* | | fix warnings: suggest explicit braces to avoid ambiguous 'else' [-Wparentheses]Wladimir J. van der Laan2012-04-151-0/+4
| | |
* | | Database micro-optimization for "tx" network messageJeff Garzik2012-04-131-8/+3
| |/ |/| | | | | | | | | | | | | Open database once per "tx" message, rather than multiple times, in the case of orphan transaction presence. As a side effect, a now-unused CTransaction::AcceptToMemoryPool() variant is removed.
* | Remove obsolete Win32 AffinityBugWorkaround()Jeff Garzik2012-04-121-2/+0
|/ | | | | | Reference miner exists for testnet-in-a-box type situations, and as a reference. We don't care enough about highly optimized internal mining to keep workarounds like this.
* Use filesystem::path instead of manual string tinkeringPieter Wuille2012-04-111-1/+1
| | | | | | | | | | | | | | Where possible, use boost::filesystem::path instead of std::string or char* for filenames. This avoids a lot of manual string tinkering, in favor of path::operator/. GetDataDir is also reworked significantly, it now only keeps two cached directory names (the network-specific data dir, and the root data dir), which are decided through a parameter instead of pre-initialized global variables. Finally, remove the "upgrade from 0.1.5" case where a debug.log in the current directory has to be removed.
* Merge pull request #1054 from sipa/buildinfoPieter Wuille2012-04-101-5/+0
|\ | | | | Build identification strings
| * Build identification stringsPieter Wuille2012-04-101-5/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | All client version information is moved to version.cpp, which optionally (-DHAVE_BUILD_INFO) includes build.h. build.h is automatically generated on supporting platforms via contrib/genbuild.sh, using git describe. The git export-subst attribute is used to put the commit id statically in version.cpp inside generated archives, and this value is used if no build.h is present. The gitian descriptors are modified to use git archive instead of a copy, to create the src/ directory in the output. This way, src/src/version.cpp will contain the static commit id. To prevent gitian builds from getting the "-dirty" marker in their git-describe generated identifiers, no touching of files or running sed on the makefile is performed anymore. This does not seem to influence determinism.
* | Use scoped locks instead of CRITICAL_BLOCKPieter Wuille2012-04-091-30/+42
|/
* qtui.h/noui.h interface cleanupWladimir J. van der Laan2012-04-041-1/+1
| | | | | | | - rename wxMessageBox, remove redundant arguments to noui/qtui calls - also, add flag to force blocking, modal dialog box for disk space warning etc - clarify function naming - no more special MessageBox needed from AppInit2, as window object is created before calling AppInit2
* support RPC stop and encryptwallet with UIWladimir J. van der Laan2012-04-041-1/+1
|
* remove unused CalledSetStatusBar and UIThreadCall notificationsWladimir J. van der Laan2012-04-041-3/+0
|
* Merge pull request #951 from TheBlueMatt/headerslimitGavin Andresen2012-04-021-2/+2
|\ | | | | Limit getheaders to a hard 2000.
| * Limit getheaders to a hard 2000.Matt Corallo2012-03-191-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously getheaders would return any number of headers up to 2000 + the distance the locator parameter was back (which is up to ~ the number of items in the locator ^ 2). The only client I was able to find which actually handles the headers message is BitcoinJ, and it clearly expects no more than 2000 headers See: http://code.google.com/p/bitcoinj/source/browse/core/src/main/java/com/google/bitcoin/core/HeadersMessage.java#35 Additionally, the wiki clearly states that getheaders will only ever return 2000 headers: https://en.bitcoin.it/wiki/Network#Messages
* | Merge branch 'addrman' of https://github.com/sipa/bitcoinGavin Andresen2012-03-221-53/+13
|\ \
| * | CAddrMan: stochastic address managerPieter Wuille2012-02-241-53/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | Design goals: * Only keep a limited number of addresses around, so that addr.dat does not grow without bound. * Keep the address tables in-memory, and occasionally write the table to addr.dat. * Make sure no (localized) attacker can fill the entire table with his nodes/addresses. See comments in addrman.h for more detailed information.
* | | Remove -bip16 and -paytoscripthashtime command-line argumentsGavin Andresen2012-03-211-6/+3
| | |
* | | Merge pull request #948 from sipa/unstuckGavin Andresen2012-03-211-3/+8
|\ \ \ | | | | | | | | Prevent stuck block download in large reorganisations
| * | | Prevent stuck block download in large reorganisationsPieter Wuille2012-03-211-3/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In cases of very large reorganisations (hundreds of blocks), a situation may appear where an 'inv' is sent as response to a 'getblocks', but the last block mentioned in the inv is already known to the receiver node. However, the supplying node uses a request for this last block as a trigger to send the rest of the inv blocks. If it never comes, the block chain download is stuck. This commit makes the receiver node always request the last inv'ed block, even if it is already known, to prevent this problem.
* | | | More debug output for failed reorganizationsPieter Wuille2012-03-211-4/+6
|/ / /
* | | Use last checkpoint instead of hard-coded 140,700. Fixes #913.Gavin Andresen2012-03-201-1/+2
| | |
* | | assertion in CBlock::SetBestChainInner was too strongPieter Wuille2012-03-201-2/+1
| |/ |/|
* | Limit the impact of reorganisations on the databasePieter Wuille2012-03-121-17/+61
| | | | | | | | | | | | | | | | | | | | | | | | Sometimes a new block arrives in a new chain that was already the best valid one, but wasn't marked that way. This happens for example when network rules change to recover after a fork. In this case, it is not necessary to do the entire reorganisation inside a single db commit. These can become huge, and exceed the objects/lockers limits in bdb. This patch limits the blocks the actual reorganisation is applied to, and adds the next blocks afterwards in separate db transactions.
* | Do not allow overwriting unspent transactions (BIP 30)Pieter Wuille2012-03-031-2/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Introduce the following network rule: * a block is not valid if it contains a transaction whose hash already exists in the block chain, unless all that transaction's outputs were already spent before said block. Warning: this is effectively a network rule change, with potential risk for forking the block chain. Leaving this unfixed carries the same risk however, for attackers that can cause a reorganisation in part of the network. Thanks to Russell O'Connor and Ben Reeves.
* | DoS fix for mapOrphanTransactionsv0.6.0rc2Gavin Andresen2012-02-291-1/+24
| |
* | "February"Michael Ford2012-02-281-1/+1
| |
* | Merge branch 'nodosbip16' of https://github.com/sipa/bitcoinGavin Andresen2012-02-271-0/+7
|\ \
| * | Do not invoke anti-DoS system for invalid BIP16 transactionsPieter Wuille2012-02-251-0/+7
| |/ | | | | | | | | | | | | | | Doing so would allow an attack on old nodes, which would relay a standard transaction spending a BIP16 output in an invalid way, until reaching a new node, which will disconnect their peer. Reported by makomk on IRC.
* / bitcoind changes to stop storing settings in wallet.dat.Gavin Andresen2012-02-261-18/+12
|/
* Merge branch 'fixnullpfrom' of https://github.com/sipa/bitcoinGavin Andresen2012-02-221-2/+4
|\