aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #264 from sipa/mintxfeefixJeff Garzik2011-06-051-3/+12
|\ | | | | Fix for small change outputs
| * Fix for small change outputsPieter Wuille2011-05-251-3/+12
| | | | | | | | | | | | | | | | | | | | With the separation of CENT and MIN_TX_FEE, it is now reasonable to create change outputs between 0.01 and 0.0005, as these are spendable according to the policy, even though they require a fee to be paid. Also, when enough fee was already present, everything can go into a change output, without further increasing the fee.
* | Merge pull request #255 from sipa/rescanupdateJeff Garzik2011-06-051-2/+2
|\ \ | | | | | | Update transactions already in the wallet when rescanning.
| * | Update transactions already in the wallet when rescanning.Pieter Wuille2011-05-221-2/+2
| |/ | | | | | | | | | | | | | | When rescanning, if the scanned transaction is already in the wallet, it is skipped. However, if someone sends a transaction, does not wait for confirmation, switches wallets, waits for a block that contains his original transaction, and switches wallets again, a rescan will leave his wallet transaction (which has no merkle branch, so no confirmations) untouched.
* | bugfix: accept free transactionsPieter Wuille2011-05-281-1/+1
| |
* | Separate required fee for relaying and creationPieter Wuille2011-05-261-3/+3
|/ | | | | | | Transactions created with the new minimal fee policy would not be relayed by the network. Therefore, we separate the minimal fee that is necessary to relay and to create, leaving the creation one at the old amount, for now.
* make bitcoin include files more modularWladimir J. van der Laan2011-05-151-60/+58
|
* Add #ifdef USE_UPNP around usage of fUseUPnP to fix build failure.Daniel Holbert2011-05-121-2/+0
|
* Replace CENT with new constant MIN_TX_FEE, where appropriate.Jeff Garzik2011-05-111-1/+1
| | | | MIN_TX_FEE==CENT remains true (until next commit).
* Manual merge of jaromil's source tree reorg commit.Jeff Garzik2011-05-091-81/+5
| | | | | Conflicts: src/sha256.cpp
* directory re-organization (keeps the old build system)Jaromil2011-04-231-0/+4104
there is no internal modification of any file in this commit files are moved into directories according to established standards in sourcecode distribution; these directories contain: src - Files that are used in constructing the executable binaries, but are not installed. doc - Files in HTML and text format that document usage, quirks of the implementation, and contributor checklists. locale - Files that contain human language translation of strings used in the program contrib - Files contributed from distributions or other third party implementing scripts and auxiliary programs