novacoin.git
13 years agoUpdated development process description
Gavin Andresen [Fri, 21 Jan 2011 15:52:48 +0000]
Updated development process description

13 years agoAdd -rescan option to --help output
Gavin Andresen [Thu, 20 Jan 2011 21:29:07 +0000]
Add -rescan option to --help output

13 years agoMerge branch 'printtoconsole' of https://github.com/dooglus/bitcoin into integration
Gavin Andresen [Thu, 20 Jan 2011 21:22:33 +0000]
Merge branch 'printtoconsole' of https://github.com/dooglus/bitcoin into integration

13 years agoMerge branch '4wayswitch' of https://github.com/dooglus/bitcoin into integration
Gavin Andresen [Thu, 20 Jan 2011 21:21:59 +0000]
Merge branch '4wayswitch' of https://github.com/dooglus/bitcoin into integration

13 years agoMerge branch 'showdefaultsinhelp' of https://github.com/dooglus/bitcoin into integration
Gavin Andresen [Thu, 20 Jan 2011 21:20:11 +0000]
Merge branch 'showdefaultsinhelp' of https://github.com/dooglus/bitcoin into integration

13 years agoDon't use GetBoolArg() and mapArgs; use one or the other.
Chris [Thu, 20 Jan 2011 20:26:33 +0000]
Don't use GetBoolArg() and mapArgs; use one or the other.

13 years agoFix bus error in DebugPrint if -datadir given non-existent directory.
Gavin Andresen [Thu, 20 Jan 2011 19:57:46 +0000]
Fix bus error in DebugPrint if -datadir given non-existent directory.

13 years agoThe --help text wasn't showing the default values for three of the options, as follows:
Chris [Thu, 20 Jan 2011 19:49:29 +0000]
The --help text wasn't showing the default values for three of the options, as follows:

    -rpcport (default: 8332)
    -rpcconnect (default: 127.0.0.1)
    -keypool (default: 100)

Edited the --help text to include the defaults.

13 years agoAdd new command line argument "-printtoconsole" to send debugging output to the conso...
Chris [Thu, 20 Jan 2011 19:45:01 +0000]
Add new command line argument "-printtoconsole" to send debugging output to the console instead of to debug.log.  The code for this was already in place, but there was no way other than editing the source and rebuilding to turn it on.

13 years agoMerge branch 'fix-statusbar-color' of https://github.com/mhanne/bitcoin into FIXES
Gavin Andresen [Thu, 20 Jan 2011 19:20:52 +0000]
Merge branch 'fix-statusbar-color' of https://github.com/mhanne/bitcoin into FIXES

13 years agoMerge branch 'issue34' of https://github.com/dooglus/bitcoin into FIXES
Gavin Andresen [Thu, 20 Jan 2011 19:18:51 +0000]
Merge branch 'issue34' of https://github.com/dooglus/bitcoin into FIXES

13 years agoprint -rescan timing info in debug.log
Gavin Andresen [Thu, 20 Jan 2011 19:12:10 +0000]
print -rescan timing info in debug.log

13 years agoFix issue 34: correct spelling of -rpcsslcertificatechainfile in --help text.
Chris [Thu, 20 Jan 2011 18:49:44 +0000]
Fix issue 34: correct spelling of -rpcsslcertificatechainfile in --help text.

13 years agoReconcile getbalance and listaccounts 0 in the shared-wallet case
Gavin Andresen [Thu, 20 Jan 2011 18:10:01 +0000]
Reconcile getbalance and listaccounts 0 in the shared-wallet case
If you copied your wallet and used it on two different machines, the balance reported by getbalance and the sum(listaccounts) could disagree, because you might receive payments for an address that is in your wallet but not your address book.  Now all such transactions are credited to the default empty-string account.

13 years agoReacceptWalletTransactions bugfix
Gavin Andresen [Wed, 19 Jan 2011 21:50:20 +0000]
ReacceptWalletTransactions bugfix

Fix two bugs that can happen if you copy your wallet to another machine
and perform transactions on both.

First, ReacceptWalletTransactions would notice if the other wallet spent coins, and
would correctly mark the receiving transaction spent.  However, it did not add the spending
transaction to the wallet.  Now it does.

Second, account balances could get out of sync with 'getbalance' because coins received
by the other copy of the wallet were not necessarily detected.  Now ReacceptWalletTransactions
will scan the entire blockchain for transactions that should be in the wallet if it runs
across a 'spent in the other wallet' transaction.

Finally, there was a small bug in the accounts getbalance code-- generated coins with between
100 and 119 confirmations were not being counted in the balance of account "".

13 years agodon't set statusbar background color
Marius Hanne [Wed, 19 Jan 2011 00:27:58 +0000]
don't set statusbar background color

people with dark system theme otherwise have white text on light-grey bg

13 years agoMerge branch 'integration' into FIXES
Gavin Andresen [Tue, 18 Jan 2011 19:46:46 +0000]
Merge branch 'integration' into FIXES

13 years agoMerge branch 'listaccountsbug' of https://github.com/gavinandresen/bitcoin-git into...
Gavin Andresen [Tue, 18 Jan 2011 19:35:50 +0000]
Merge branch 'listaccountsbug' of https://github.com/gavinandresen/bitcoin-git into integration

13 years agoMerge branch 'gettransaction' of https://github.com/gavinandresen/bitcoin-git into...
Gavin Andresen [Tue, 18 Jan 2011 19:35:03 +0000]
Merge branch 'gettransaction' of https://github.com/gavinandresen/bitcoin-git into integration

13 years agoMerge branch 'setaccountbug' of https://github.com/gavinandresen/bitcoin-git into...
Gavin Andresen [Tue, 18 Jan 2011 19:33:18 +0000]
Merge branch 'setaccountbug' of https://github.com/gavinandresen/bitcoin-git into integration

13 years agoAdd the -keypool option description to help output
David FRANCOIS [Fri, 14 Jan 2011 19:55:36 +0000]
Add the -keypool option description to help output

13 years agoFix setaccount/getaccountaddress interaction bug
Gavin Andresen [Fri, 14 Jan 2011 01:04:56 +0000]
Fix setaccount/getaccountaddress interaction bug
See https://github.com/bitcoin/bitcoin/issues#issue/29

13 years agoFix so listaccounts with minconf works.
Gavin Andresen [Mon, 10 Jan 2011 18:54:39 +0000]
Fix so listaccounts with minconf works.

13 years agoAdd account/address details to gettransaction output
Gavin Andresen [Fri, 7 Jan 2011 19:10:08 +0000]
Add account/address details to gettransaction output

13 years agoMerge branch 'listaddresses' into integration
Gavin Andresen [Thu, 6 Jan 2011 13:56:10 +0000]
Merge branch 'listaddresses' into integration

13 years agoAdd time to category:move transactions.
Gavin Andresen [Wed, 5 Jan 2011 14:52:52 +0000]
Add time to category:move transactions.

13 years agoMerge branch 'listaddresses' of https://github.com/gavinandresen/bitcoin-git
Gavin Andresen [Mon, 3 Jan 2011 19:45:49 +0000]
Merge branch 'listaddresses' of https://github.com/gavinandresen/bitcoin-git

13 years agodon't advertise on IRC if we don't allow external connections
Witchspace [Fri, 24 Dec 2010 09:25:21 +0000]
don't advertise on IRC if we don't allow external connections

13 years agoadd -nolisten command line option
Witchspace [Wed, 22 Dec 2010 13:08:00 +0000]
add -nolisten command line option

13 years agoAdd address to listtransactions output
Gavin Andresen [Mon, 20 Dec 2010 19:44:54 +0000]
Add address to listtransactions output

13 years agoEndModal fix for Mac from piotrp
Gavin Andresen [Mon, 20 Dec 2010 15:36:48 +0000]
EndModal fix for Mac from piotrp

13 years agoEndModal fix for Mac from piotrp
Gavin Andresen [Mon, 20 Dec 2010 15:36:48 +0000]
EndModal fix for Mac from piotrp

13 years agoStraw-man for dev process
Gavin Andresen [Sun, 19 Dec 2010 15:39:36 +0000]
Straw-man for dev process

13 years agoMerge remote branch 'refs/remotes/svn/trunk' into svn
Gavin Andresen [Fri, 17 Dec 2010 21:23:47 +0000]
Merge remote branch 'refs/remotes/svn/trunk' into svn

13 years agoMissed a int64_t cast when I added transaction time output
gavinandresen [Fri, 17 Dec 2010 20:16:27 +0000]
Missed a int64_t cast when I added transaction time output

git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@205 1a98c847-1fd6-4fd8-948a-caf3550aa51b

13 years agoMerge remote branch 'refs/remotes/svn/trunk' into svn
Gavin Andresen [Thu, 16 Dec 2010 18:24:47 +0000]
Merge remote branch 'refs/remotes/svn/trunk' into svn

13 years agolisttransactions was reporting address instead of account for 'receive'
gavinandresen [Thu, 16 Dec 2010 18:17:26 +0000]
listtransactions was reporting address instead of account for 'receive'
setgenerate true 0  is now the same as setgenerate false
And return transaction time

git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@204 1a98c847-1fd6-4fd8-948a-caf3550aa51b

13 years agoMerge remote branch 'refs/remotes/svn/trunk' into svn
Gavin Andresen [Thu, 16 Dec 2010 16:36:47 +0000]
Merge remote branch 'refs/remotes/svn/trunk' into svn

13 years agoNew RPC command: listaccounts. New RPC setting -rpctimeout. And listtransactions '*'
gavinandresen [Thu, 16 Dec 2010 01:06:03 +0000]
New RPC command: listaccounts.  New RPC setting -rpctimeout.  And listtransactions '*'

git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@203 1a98c847-1fd6-4fd8-948a-caf3550aa51b

13 years agoget external ip from irc
s_nakamoto [Wed, 15 Dec 2010 22:43:51 +0000]
get external ip from irc

git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@202 1a98c847-1fd6-4fd8-948a-caf3550aa51b

13 years agoMerge remote branch 'refs/remotes/svn/trunk' into svn
Gavin Andresen [Mon, 13 Dec 2010 19:28:59 +0000]
Merge remote branch 'refs/remotes/svn/trunk' into svn

13 years ago-- version 0.3.19 release
s_nakamoto [Mon, 13 Dec 2010 16:26:14 +0000]
-- version 0.3.19 release

git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@201 1a98c847-1fd6-4fd8-948a-caf3550aa51b

13 years agoMerge remote branch 'refs/remotes/svn/trunk' into svn
Gavin Andresen [Sun, 12 Dec 2010 21:03:42 +0000]
Merge remote branch 'refs/remotes/svn/trunk' into svn

13 years agocorrection
s_nakamoto [Sun, 12 Dec 2010 18:38:02 +0000]
correction

git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@200 1a98c847-1fd6-4fd8-948a-caf3550aa51b

13 years agoadded some DoS limits, removed safe mode
s_nakamoto [Sun, 12 Dec 2010 18:20:36 +0000]
added some DoS limits, removed safe mode

git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@199 1a98c847-1fd6-4fd8-948a-caf3550aa51b

13 years agoMerge remote branch 'refs/remotes/svn/trunk' into svn
Gavin Andresen [Thu, 9 Dec 2010 01:06:44 +0000]
Merge remote branch 'refs/remotes/svn/trunk' into svn

13 years ago-- version 0.3.18 release
s_nakamoto [Wed, 8 Dec 2010 23:23:48 +0000]
-- version 0.3.18 release

git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@198 1a98c847-1fd6-4fd8-948a-caf3550aa51b

13 years agoIsStandard() check for CScripts: only relay/include in blocks CScripts we can understand.
gavinandresen [Tue, 7 Dec 2010 13:43:31 +0000]
IsStandard() check for CScripts: only relay/include in blocks CScripts we can understand.

git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@197 1a98c847-1fd6-4fd8-948a-caf3550aa51b

13 years agoMerge remote branch 'refs/remotes/svn/trunk' into svn
Gavin Andresen [Mon, 6 Dec 2010 23:58:31 +0000]
Merge remote branch 'refs/remotes/svn/trunk' into svn

13 years agofix wallet.dat compatibility problem if you downgrade from 0.3.17 and then upgrade...
s_nakamoto [Mon, 6 Dec 2010 15:59:28 +0000]
fix wallet.dat compatibility problem if you downgrade from 0.3.17 and then upgrade again

git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@196 1a98c847-1fd6-4fd8-948a-caf3550aa51b

13 years agopreps for future client-only mode,
s_nakamoto [Sun, 5 Dec 2010 09:29:30 +0000]
preps for future client-only mode,
jgarzik's initial download speedup

git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@195 1a98c847-1fd6-4fd8-948a-caf3550aa51b

13 years agoAll boolean options/flags now work the same way.
gavinandresen [Fri, 3 Dec 2010 19:38:09 +0000]
All boolean options/flags now work the same way.

git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@194 1a98c847-1fd6-4fd8-948a-caf3550aa51b

13 years agoMerge remote branch 'refs/remotes/svn/trunk' into svn
Gavin Andresen [Wed, 1 Dec 2010 14:20:49 +0000]
Merge remote branch 'refs/remotes/svn/trunk' into svn

13 years agoJSON methods: listtransactions, gettransaction, move, sendfrom and getbalance <account>
gavinandresen [Tue, 30 Nov 2010 18:58:11 +0000]
JSON methods: listtransactions, gettransaction, move, sendfrom and getbalance <account>

git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@193 1a98c847-1fd6-4fd8-948a-caf3550aa51b

13 years agoMerge remote branch 'refs/remotes/svn/trunk' into svn
Gavin Andresen [Sun, 28 Nov 2010 15:56:51 +0000]
Merge remote branch 'refs/remotes/svn/trunk' into svn

13 years agoadded boost tuples to serialize.h
s_nakamoto [Sat, 27 Nov 2010 23:12:41 +0000]
added boost tuples to serialize.h

git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@192 1a98c847-1fd6-4fd8-948a-caf3550aa51b

13 years ago-- version 0.3.17 release
s_nakamoto [Thu, 25 Nov 2010 20:41:57 +0000]
-- version 0.3.17 release

git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@191 1a98c847-1fd6-4fd8-948a-caf3550aa51b

13 years agostill working on account-based commands getbalance, move and sendfrom, they're only...
s_nakamoto [Thu, 25 Nov 2010 16:40:25 +0000]
still working on account-based commands getbalance, move and sendfrom, they're only for testing for now

git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@190 1a98c847-1fd6-4fd8-948a-caf3550aa51b

13 years agoMerge remote branch 'refs/remotes/svn/trunk' into svn
Gavin Andresen [Tue, 23 Nov 2010 20:01:34 +0000]
Merge remote branch 'refs/remotes/svn/trunk' into svn

13 years agonew getwork
s_nakamoto [Tue, 23 Nov 2010 19:16:36 +0000]
new getwork

git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@189 1a98c847-1fd6-4fd8-948a-caf3550aa51b

13 years agoMerge remote branch 'refs/remotes/svn/trunk' into svn
Gavin Andresen [Mon, 22 Nov 2010 16:34:13 +0000]
Merge remote branch 'refs/remotes/svn/trunk' into svn

13 years agoDepracate "label" API, replacing with account
gavinandresen [Mon, 22 Nov 2010 15:53:20 +0000]
Depracate "label" API, replacing with account
New RPC methods: move, sendfrom
Change to getbalance (now takes optional [account] argument)
Renamed methods with "label" in their names.
sendtoaddress returns hexadecimal transaction ID instead of "sent".

git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@188 1a98c847-1fd6-4fd8-948a-caf3550aa51b

13 years agoMerge remote branch 'refs/remotes/svn/trunk' into svn
Gavin Andresen [Mon, 22 Nov 2010 05:06:42 +0000]
Merge remote branch 'refs/remotes/svn/trunk' into svn

13 years agoadded transaction fee setting in UI options menu,
s_nakamoto [Sun, 21 Nov 2010 22:46:19 +0000]
added transaction fee setting in UI options menu,
cut free transaction area from 50KB to 26KB

git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@187 1a98c847-1fd6-4fd8-948a-caf3550aa51b

13 years agoMerge remote branch 'refs/remotes/svn/trunk' into svn
Gavin Andresen [Sun, 21 Nov 2010 20:48:48 +0000]
Merge remote branch 'refs/remotes/svn/trunk' into svn

13 years agosmall bugfix
s_nakamoto [Sat, 20 Nov 2010 02:12:03 +0000]
small bugfix

git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@186 1a98c847-1fd6-4fd8-948a-caf3550aa51b

13 years agorequire some minimal priority for free transactions to slow down transaction spam
s_nakamoto [Fri, 19 Nov 2010 23:37:05 +0000]
require some minimal priority for free transactions to slow down transaction spam

git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@185 1a98c847-1fd6-4fd8-948a-caf3550aa51b

13 years agoefficiently sort transaction dependencies in one pass
s_nakamoto [Fri, 19 Nov 2010 20:22:46 +0000]
efficiently sort transaction dependencies in one pass

git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@184 1a98c847-1fd6-4fd8-948a-caf3550aa51b

13 years agoMerge remote branch 'refs/remotes/svn/trunk' into svn
Gavin Andresen [Thu, 18 Nov 2010 01:51:36 +0000]
Merge remote branch 'refs/remotes/svn/trunk' into svn

13 years agoOutputDebugStringF fix for Mac FileVault problem, take 3
gavinandresen [Thu, 18 Nov 2010 00:11:33 +0000]
OutputDebugStringF fix for Mac FileVault problem, take 3
(cannot use a CRITICAL_BLOCK because of undefined order calling static destructors;
instead, keep debug.log open, and tell people to use copytruncate when doing
log rotation)

git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@183 1a98c847-1fd6-4fd8-948a-caf3550aa51b

13 years agoMake OutputDebugStringF thread-safe again (thanks ArtForz for catching)
gavinandresen [Tue, 16 Nov 2010 17:41:44 +0000]
Make OutputDebugStringF thread-safe again (thanks ArtForz for catching)

git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@182 1a98c847-1fd6-4fd8-948a-caf3550aa51b

13 years agoMerge remote branch 'refs/remotes/svn/trunk' into svn
Gavin Andresen [Tue, 16 Nov 2010 14:04:24 +0000]
Merge remote branch 'refs/remotes/svn/trunk' into svn

13 years agoRe-open debug.log every ten minutes instead of every printf; fixes performance proble...
gavinandresen [Tue, 16 Nov 2010 02:32:36 +0000]
Re-open debug.log every ten minutes instead of every printf; fixes performance problem with Mac FileVault.

git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@181 1a98c847-1fd6-4fd8-948a-caf3550aa51b

13 years agoUpdate websites used for GetMyExternalIP
gavinandresen [Mon, 15 Nov 2010 21:37:33 +0000]
Update websites used for GetMyExternalIP

git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@180 1a98c847-1fd6-4fd8-948a-caf3550aa51b

13 years ago-- version 0.3.15 release
s_nakamoto [Sun, 14 Nov 2010 00:06:10 +0000]
-- version 0.3.15 release

git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@179 1a98c847-1fd6-4fd8-948a-caf3550aa51b

13 years agoMerge remote branch 'refs/remotes/svn/trunk' into svn
Gavin Andresen [Wed, 10 Nov 2010 16:45:51 +0000]
Merge remote branch 'refs/remotes/svn/trunk' into svn

13 years agoAdd paytxfee to getinfo output
gavinandresen [Wed, 10 Nov 2010 16:43:31 +0000]
Add paytxfee to getinfo output

git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@178 1a98c847-1fd6-4fd8-948a-caf3550aa51b

13 years agoMerge remote branch 'refs/remotes/svn/trunk' into svn
Gavin Andresen [Tue, 9 Nov 2010 22:10:43 +0000]
Merge remote branch 'refs/remotes/svn/trunk' into svn

13 years agoSelectCoins first pass tries not to use coins with less than 6 confirmations
s_nakamoto [Tue, 9 Nov 2010 19:47:07 +0000]
SelectCoins first pass tries not to use coins with less than 6 confirmations

git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@177 1a98c847-1fd6-4fd8-948a-caf3550aa51b

13 years agoMerge remote branch 'refs/remotes/svn/trunk' into svn
Gavin Andresen [Mon, 8 Nov 2010 23:05:34 +0000]
Merge remote branch 'refs/remotes/svn/trunk' into svn

13 years ago-paytxfee is now per KB,
s_nakamoto [Mon, 8 Nov 2010 22:06:07 +0000]
-paytxfee is now per KB,
BitcoinMiner prioritise transactions by how old their dependencies are

git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@176 1a98c847-1fd6-4fd8-948a-caf3550aa51b

13 years agoMerge remote branch 'refs/remotes/svn/trunk' into svn
Gavin Andresen [Thu, 4 Nov 2010 00:24:50 +0000]
Merge remote branch 'refs/remotes/svn/trunk' into svn

13 years agoFix IsInitialBlockDownload if running on testnet
gavinandresen [Thu, 4 Nov 2010 00:23:00 +0000]
Fix IsInitialBlockDownload if running on testnet

git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@175 1a98c847-1fd6-4fd8-948a-caf3550aa51b

13 years agoPrevent double-sends from quick double-button-clicks
gavinandresen [Wed, 3 Nov 2010 23:40:43 +0000]
Prevent double-sends from quick double-button-clicks

git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@174 1a98c847-1fd6-4fd8-948a-caf3550aa51b

13 years agoMerge remote branch 'refs/remotes/svn/trunk' into svn
Gavin Andresen [Sun, 24 Oct 2010 01:32:19 +0000]
Merge remote branch 'refs/remotes/svn/trunk' into svn

13 years agobugfixes from Dean Gores,
s_nakamoto [Sat, 23 Oct 2010 17:43:53 +0000]
bugfixes from Dean Gores,
addr system changes,
make sure no gen before block 74000

git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@173 1a98c847-1fd6-4fd8-948a-caf3550aa51b

13 years agoMerge remote branch 'refs/remotes/svn/trunk' into svn
Gavin Andresen [Fri, 22 Oct 2010 15:23:12 +0000]
Merge remote branch 'refs/remotes/svn/trunk' into svn

13 years agotestnet and keypoololdest added to RPC getinfo output. And RPC now sends proper...
gavinandresen [Fri, 22 Oct 2010 15:15:20 +0000]
testnet and keypoololdest added to RPC getinfo output.  And RPC now sends proper HTTP Date headers.

git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@172 1a98c847-1fd6-4fd8-948a-caf3550aa51b

13 years ago-- version 0.3.14 release
s_nakamoto [Thu, 21 Oct 2010 16:47:16 +0000]
-- version 0.3.14 release

git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@171 1a98c847-1fd6-4fd8-948a-caf3550aa51b

13 years agoMerge remote branch 'refs/remotes/svn/trunk' into svn
Gavin Andresen [Wed, 20 Oct 2010 16:35:35 +0000]
Merge remote branch 'refs/remotes/svn/trunk' into svn

13 years agoGavin Andresen: multiple instance check, -testnet use port 18333
s_nakamoto [Wed, 20 Oct 2010 16:12:23 +0000]
Gavin Andresen: multiple instance check, -testnet use port 18333

git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@170 1a98c847-1fd6-4fd8-948a-caf3550aa51b

13 years agovalidateaddress RPC command
gavinandresen [Wed, 20 Oct 2010 15:58:16 +0000]
validateaddress RPC command

git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@169 1a98c847-1fd6-4fd8-948a-caf3550aa51b

13 years agoUpdate README now that main svn has -testnet built in
Gavin Andresen [Tue, 19 Oct 2010 20:43:50 +0000]
Update README now that main svn has -testnet built in

13 years agoMerge remote branch 'refs/remotes/svn/trunk' into svn
Gavin Andresen [Tue, 19 Oct 2010 18:17:18 +0000]
Merge remote branch 'refs/remotes/svn/trunk' into svn

13 years agoGavin's TEST network as -testnet switch, misc fixes
s_nakamoto [Tue, 19 Oct 2010 17:16:51 +0000]
Gavin's TEST network as -testnet switch, misc fixes

git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@168 1a98c847-1fd6-4fd8-948a-caf3550aa51b

13 years agoMerge remote branch 'refs/remotes/svn/trunk' into svn
Gavin Andresen [Thu, 14 Oct 2010 20:46:16 +0000]
Merge remote branch 'refs/remotes/svn/trunk' into svn

13 years agomakefile.unix tweak from Xunie so bitcoind links on Ubuntu 10.04 x86_64
gavinandresen [Thu, 14 Oct 2010 13:33:03 +0000]
makefile.unix tweak from Xunie so bitcoind links on Ubuntu 10.04 x86_64

git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@167 1a98c847-1fd6-4fd8-948a-caf3550aa51b

13 years agoMerge remote branch 'refs/remotes/svn/trunk' into svn
Gavin Andresen [Mon, 11 Oct 2010 19:15:09 +0000]
Merge remote branch 'refs/remotes/svn/trunk' into svn

13 years agoFixed description of -rpcuser/-rpcpassword options.
gavinandresen [Mon, 11 Oct 2010 18:32:33 +0000]
Fixed description of -rpcuser/-rpcpassword options.

git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@166 1a98c847-1fd6-4fd8-948a-caf3550aa51b

13 years ago-rpcssl=1 option, allowing secure HTTPS JSON-RPC connections on OSX/Unix.
gavinandresen [Mon, 11 Oct 2010 18:23:41 +0000]
-rpcssl=1 option, allowing secure HTTPS JSON-RPC connections on OSX/Unix.

git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@165 1a98c847-1fd6-4fd8-948a-caf3550aa51b