Jeff Garzik
e93e5349cb
Remove GUI's "Generate Coins" option from the menu.
...
CPU mining remains available via command line option [until/unless
the community decides to remove that completely].
2011-04-18 15:10:27 -04:00
Gavin Andresen
657cfe721b
Merge branch 'upnpfix' of https://github.com/TheBlueMatt/bitcoin
2011-04-18 14:53:13 -04:00
Dan Helfman
f285d4f4f3
Fix for #156 : UPnP segfault when no valid UPnP IGDs are found.
2011-04-16 21:58:42 +02:00
Gavin Andresen
bf3a0902ef
Merge branch 'master' of https://github.com/gjs278/bitcoin
2011-04-15 12:09:50 -04:00
Gavin Andresen
9a189be740
Merge branch 'localefix'
2011-04-15 12:03:50 -04:00
Gavin Andresen
9ff411f7f7
Set time locale to POSIX in rfc1123Time so weekday/months in http responses are correct.
2011-04-15 12:01:34 -04:00
Gavin Andresen
a381eb8ddb
Merge branch 'http-version' of https://github.com/jgarzik/bitcoin
2011-04-15 11:41:39 -04:00
Jeff Garzik
17616eac17
Send/return full bitcoin version string in Server and User-Agent HTTP headers
2011-04-15 03:58:42 -04:00
Jeff Garzik
a584320357
Ensure version number->string conversion is consistent
2011-04-15 03:58:28 -04:00
Carlo Alberto Ferraris
5aef2c0d55
add parameter from to listtransactions this allows querying for ranges, i.e. transactions [from, from+count)
2011-04-15 08:56:54 +02:00
Matt Corallo
973800b52f
Exit when no UPnP router found and fUseUPnP gets set to 0.
2011-04-15 00:37:50 +02:00
Dan Loewenherz
d7f0287235
build: add note for Snow Leopard users and fix typos in linking instructions
2011-04-13 13:38:24 -07:00
Gavin Andresen
b37f09aa2e
New checkpoint at block 118,000
2011-04-13 14:30:22 -04:00
gjs278
66fb32d267
pidfile support for daemon
2011-04-12 19:15:19 -05:00
Gavin Andresen
485dda9774
Merge branch 'listimmature' of /Users/gavin/src/gavin_btc
2011-04-12 17:31:31 -04:00
Gavin Andresen
d89d456655
Merge branch 'spentpertxout' of https://github.com/sipa/bitcoin
2011-04-12 17:27:15 -04:00
Pieter Wuille
c59b6f704c
Bugfix for spentpertxout: slow startup
...
When starting the client, ReacceptWalletTransaction didn't skip spent transactions in its loop, and processed all old spent transactions again.
2011-04-12 21:01:11 +02:00
Gavin Andresen
79706a8e48
Merge branch 'upnp' of https://github.com/TheBlueMatt/bitcoin
2011-04-12 14:22:12 -04:00
Gavin Andresen
2e8b33824f
Merge branch 'spentpertxout' of https://github.com/sipa/bitcoin
2011-04-12 13:31:44 -04:00
Pieter Wuille
aca3f961db
select transaction outputs separately
...
Update to SelectCoins and CreateTransaction to select source transaction outputs separately instead of per whole transaction.
2011-04-12 19:29:36 +02:00
Pieter Wuille
335e878be8
Spent per txout
...
Change some internal data structures to keep track of spentness of each wallet transaction output separately, to support partially-spent transactions:
* an update to the data structures (vfSpent in CWalletTx instead of fSpent)
* a backward-compatible update to the wallet disk format. Old clients reading back an updated wallet will ignore partially spent transactions when creating new ones, and may report a wrong balance, though.
* some helper functions (CWalletTx: IsSpent, MarkSpent, MarkDirty to reset cached values, GetAvailableCredit which only counts unredeemed outputs)
2011-04-12 19:29:36 +02:00
tcatm
d12ea887bc
disable -daemon on windows; bitcoind forks only with -daemon set
...
[added setsid() call to ui.cpp, to regain consistency with init.cpp -jgarzik]
2011-04-08 23:59:32 -04:00
Jeff Garzik
d98beea894
rfc1123Time: increase buffer size for time string
...
Make sure we can accomodate all possibilities.
2011-04-08 22:50:14 -04:00
Gavin Andresen
198fd7b0bd
Report immature coinbase transactions in listtransactions
...
Report coin generation transactions as 'category':'immature' until they have 120 confirmations (when they are reported as 'category':'generate', as before).
If the block they are in is not part of the main chain (you lost a 'block race'), then they are reported as 'category':'orphan' (with 0 confirmations).
2011-04-05 21:18:26 -04:00
Eric Swanson
0a4cb86976
Fixed issue 76 -- RPC error where addresses from addressbook's sending tab appear in listaccounts
2011-04-05 20:00:01 -04:00
Gavin Andresen
57b7fe4e6f
Merge branch 'deadlock-fixes' of https://github.com/jgarzik/bitcoin
2011-04-05 19:34:06 -04:00
Jeff Garzik
6f074b71bb
RPC sendmany must acquire cs_main lock
2011-04-05 15:15:20 -04:00
Jeff Garzik
f5f1878ba1
Fix deadlocks in setaccount, sendfrom RPC calls
...
SendMoney*() now requires caller to acquire cs_main.
GetAccountAddress() now requires caller to acquire cs_main, cs_mapWallet.
Ordering is intended to match these two callchains[1]:
1. CRITICAL_BLOCK(cs_main)
ProcessMessage(pfrom, strCommand, vMsg)
AddToWalletIfMine()
AddToWallet(wtx)
CRITICAL_BLOCK(cs_mapWallet)
2. CRITICAL_BLOCK(cs_main)
ProcessMessage(pfrom, strCommand, vMsg)
AddToWalletIfMine()
AddToWallet(wtx)
CRITICAL_BLOCK(cs_mapWallet)
walletdb.WriteName(PubKeyToAddress(vchDefaultKey), "")
CRITICAL_BLOCK(cs_mapAddressBook)
Spotted by ArtForz. Additional deadlock fixes by Gavin.
[1] http://www.bitcoin.org/smf/index.php?topic=4904.msg71897#msg71897
2011-04-04 22:24:35 -04:00
Jeff Garzik
b26141e2c5
Remove 4way SSE2 scanhash implementation.
2011-04-03 14:21:52 -04:00
Jeff Garzik
a2b6c1930d
Update DNS seed list
2011-04-01 11:33:35 -04:00
Matt Corallo
8bb5edc1c9
Allow UPnP mapping when USE_UPNP is defined and miniupnpc is installed at build time(statically linked).
...
Thanks joepie91 for the translation of the new copyright notices into Dutch.
Thanks sipa for the translation of the new copyright notices into French.
Thanks megu for the translation of the new copyright notices into Spanish.
Thanks justmoon/Blitzboom for the translation of the new copyright notices into German.
Thanks Joozero for the translation of the new copyright notices into Italian.
Remaining translations were provided by Google Translate.
2011-03-30 20:45:56 +02:00
tcatm
454bc86479
allow coredumps by not catching SIGSEGV
2011-03-25 13:23:43 +01:00
Jeff Garzik
3a47bf7265
Merge branch 'master' of git://github.com/bitcoin/bitcoin
2011-03-23 18:28:50 -04:00
Jeff Garzik
8203ec4b11
[locale] Regenerate es, nl binary message catalogs
2011-03-23 18:27:09 -04:00
Jeff Garzik
0b8e4738f9
Merge branch 'master' of https://github.com/smola/bitcoin into tmp
2011-03-23 18:21:22 -04:00
Jeff Garzik
d38e683a6f
Merge branch 'dutchloc' of https://github.com/sipa/bitcoin into tmp
2011-03-23 18:21:10 -04:00
tcatm
c3f140033c
catch SIGINT, SIGHUP and SIGSEGV and shutdown cleanly
2011-03-23 18:27:30 +01:00
tcatm
1c09a4adb2
daemon-mode: add sleep() loop to prevent defunct child process, call setsid() in child
2011-03-21 12:11:05 +01:00
Sven Slootweg
a07dca7cd2
Updated dutch translation
2011-03-19 00:58:16 +01:00
Gavin Andresen
b7ebc662eb
Update copyright in About box from 2010 to 2011
2011-03-17 15:09:41 +01:00
Santiago M. Mola
f30dabb2ac
Update Spanish translation.
2011-03-16 20:56:03 +01:00
Jeff Garzik
e2e5f5cd9d
Fix -logtimestamps to only print time prefix once per output line
...
Incorporate BlueMatt's fix to only timestamp upon new line, and
move -logtimestamp checking outside OutputDebugPrintF() to better
future-proof it.
2011-03-16 15:42:04 -04:00
Gavin Andresen
27b7f3b43a
Merge branch 'shy'
2011-03-14 09:15:06 -04:00
Gavin Andresen
4b88647966
Merge branch 'dns-seed' of https://github.com/jgarzik/bitcoin
2011-03-13 17:15:59 -04:00
Gavin Andresen
d43fd8a038
Merge branch 'log-timestamp' of https://github.com/TheBlueMatt/bitcoin
2011-03-13 17:15:57 -04:00
Gavin Andresen
2abd56f428
Merge branch 'limitfree' of /Users/gavin/src/integration_btc
2011-03-13 17:15:44 -04:00
Gavin Andresen
1bf9b3b06f
Merge branch 'daemon-mode' of https://github.com/tcatm/bitcoin
2011-03-13 17:15:34 -04:00
Gavin Andresen
dfd059173d
Merge branch 'subcent-change' of https://github.com/tcatm/bitcoin
2011-03-13 17:15:28 -04:00
Gavin Andresen
b931ed8563
sendmany RPC command, to send to multiple recipients in one transaction.
2011-03-13 17:11:49 -04:00
Gavin Andresen
88abf70386
Make sure rate-limiting code is thread-safe
2011-03-13 14:38:07 -04:00