novacoin.git
13 years agoAdded .gitignore, which prevents 'bitcoin' and 'bitcoind' from showing up in git.
Matt Giuca [Fri, 25 Feb 2011 07:40:43 +0000]
Added .gitignore, which prevents 'bitcoin' and 'bitcoind' from showing up in git.

13 years agoMerge branch 'mgiuca-wx-config' into integration
tcatm [Fri, 25 Feb 2011 23:59:55 +0000]
Merge branch 'mgiuca-wx-config' into integration

13 years agobuild-unix.txt: Updated (now OK to use wxWidgets > 2.9.0).
Matt Giuca [Fri, 25 Feb 2011 22:17:49 +0000]
build-unix.txt: Updated (now OK to use wxWidgets > 2.9.0).

13 years agomakefile.unix: Fixed errors building bitcoind without wxWidgets installed.
Matt Giuca [Fri, 25 Feb 2011 22:12:42 +0000]
makefile.unix: Fixed errors building bitcoind without wxWidgets installed.
    WXINCLUDEPATHS and WXLIBS now assigned with '=' instead of ':='.
    This means they are only evaluated on-demand, and they will never be
    requested by 'make bitcoind', so it won't try to call wx-config.

13 years agomakefile.unix: WXINCLUDEPATHS now only used for building GUI object files.
Matt Giuca [Fri, 25 Feb 2011 22:10:10 +0000]
makefile.unix: WXINCLUDEPATHS now only used for building GUI object files.
    Moved it out of CXXFLAGS and into the command-line for the GUI objects.
    It will no longer be invoked for non-GUI and crypto object files.

13 years agomakefile.unix: Removed redundant use of wx-config in DEFS (it was being included...
Matt Giuca [Fri, 25 Feb 2011 21:58:15 +0000]
makefile.unix: Removed redundant use of wx-config in DEFS (it was being included twice).
    Also changed wx-config --cppflags to --cxxflags. I am not sure what the
    difference is supposed to be, but --cppflags does not include -pthread.

13 years agoMerge https://github.com/ojab/bitcoin into wx-config
Matt Giuca [Fri, 25 Feb 2011 21:45:38 +0000]
Merge https://github.com/ojab/bitcoin into wx-config

13 years agoBump version to 0.3.20.02
Gavin Andresen [Wed, 23 Feb 2011 19:12:20 +0000]
Bump version to 0.3.20.02

13 years agoSet SO_REUSEADDR on JSON port
tcatm [Wed, 23 Feb 2011 00:08:27 +0000]
Set SO_REUSEADDR on JSON port

13 years agoMerge branch 'master' of https://github.com/sandos/bitcoin into sandos-master
tcatm [Wed, 23 Feb 2011 00:07:43 +0000]
Merge branch 'master' of https://github.com/sandos/bitcoin into sandos-master

13 years agoremove From/Message fields from SendDialog
tcatm [Mon, 21 Feb 2011 14:56:58 +0000]
remove From/Message fields from SendDialog

13 years agoMerge branch 'master' of https://github.com/tcatm/bitcoin into tcatm-master
tcatm [Tue, 22 Feb 2011 02:00:09 +0000]
Merge branch 'master' of https://github.com/tcatm/bitcoin into tcatm-master

13 years agoChanged setup for mingw toolchain
Gavin Andresen [Fri, 18 Feb 2011 15:39:24 +0000]
Changed setup for mingw toolchain

13 years agoWindows mingw32 makefile and build notes (thanks m0mchil)
Gavin Andresen [Fri, 18 Feb 2011 14:49:00 +0000]
Windows mingw32 makefile and build notes (thanks m0mchil)

13 years agoBump version to 0.3.20.01
Gavin Andresen [Fri, 18 Feb 2011 00:22:08 +0000]
Bump version to 0.3.20.01

13 years agoSet maxconnections default to 125
Gavin Andresen [Wed, 16 Feb 2011 19:43:04 +0000]
Set maxconnections default to 125

13 years agoDenial-of-service flood control
Gavin Andresen [Wed, 16 Feb 2011 18:18:11 +0000]
Denial-of-service flood control
Drop connections that are either sending messages too fast to handle or are processing messages so slowly data starts to back up.
Adds two new options:
  -maxreceivebuffer  Default: 2000 (2000*1000 bytes)
  -maxsendbuffer     Default: 256  (256*1000 bytes)

13 years agoUpdate windows build process for 0.3.20 release
Gavin Andresen [Mon, 14 Feb 2011 17:25:34 +0000]
Update windows build process for 0.3.20 release

13 years agoVisual C++ compatibility fixes
Gavin Andresen [Fri, 11 Feb 2011 00:24:22 +0000]
Visual C++ compatibility fixes

13 years agoSet SO_REUSEADDR for JSON-RPC port
sandos [Thu, 10 Feb 2011 08:25:42 +0000]
Set SO_REUSEADDR for JSON-RPC port

13 years agoAdded 320 fresh seednodes to replace the old ones.
Daniel Folkinshteyn [Sun, 6 Feb 2011 20:10:02 +0000]
Added 320 fresh seednodes to replace the old ones.

Thanks to MagicalTux for providing the data for node uptime
Thanks to sgornick for scapy script to test node connectivity

Closes https://github.com/bitcoin/bitcoin/issues#issue/22

13 years agoReset testnet with a new genesis block
David FRANCOIS [Thu, 3 Feb 2011 13:21:21 +0000]
Reset testnet with a new genesis block

13 years agonew checkpoint at block 105,000
Gavin Andresen [Mon, 31 Jan 2011 16:26:02 +0000]
new checkpoint at block 105,000

13 years agodo not create 'Your Address' account
tcatm [Mon, 31 Jan 2011 15:42:28 +0000]
do not create 'Your Address' account

13 years ago1. Change hardcoded g++ to $(CXX)
ojab [Mon, 31 Jan 2011 12:07:55 +0000]
1. Change hardcoded g++ to $(CXX)
2. Change CFLAGS to CXXFLAGS
3. Add binaries to clean target
4. Generate wxWidgets includes/ldflags/etc from wx-config

13 years agoExplicitly state that make -f makfile.unix is the way to build
Gavin Andresen [Tue, 25 Jan 2011 14:29:13 +0000]
Explicitly state that make -f makfile.unix is the way to build

13 years agoDon't scan the time offsets vector repeatedly once we've displayed the warning that...
Chris Moore [Tue, 25 Jan 2011 00:25:41 +0000]
Don't scan the time offsets vector repeatedly once we've displayed the warning that the user's clock may be wrong.

13 years agoRepeatedly resetting the timestamp for seed nodes in the database was slow. Only...
Chris Moore [Mon, 24 Jan 2011 22:47:36 +0000]
Repeatedly resetting the timestamp for seed nodes in the database was slow.  Only update the database if it's a real change.

13 years agoBump version number to 0.3.20
Gavin Andresen [Mon, 24 Jan 2011 16:13:25 +0000]
Bump version number to 0.3.20

13 years agoFix -maxconnections. It used to account for the 8 outbound connections twice when...
Chris Moore [Sun, 23 Jan 2011 08:08:09 +0000]
Fix -maxconnections.  It used to account for the 8 outbound connections twice when calculating the number of slots left for incoming connections.

13 years agocpuid instruction clobbers eax/ebx/ecx/edx
Gavin Andresen [Sat, 22 Jan 2011 21:04:07 +0000]
cpuid instruction clobbers eax/ebx/ecx/edx

13 years agoMerge branch show-version-in-help-2 of https://github.com/dooglus/bitcoin
Chris Moore [Fri, 21 Jan 2011 20:14:20 +0000]
Merge branch show-version-in-help-2 of https://github.com/dooglus/bitcoin

13 years agoMerge branch 'display-version-in-help' of https://github.com/mhanne/bitcoin
Chris Moore [Fri, 21 Jan 2011 20:09:32 +0000]
Merge branch 'display-version-in-help' of https://github.com/mhanne/bitcoin

13 years agoMerge branch 'rpcssl-help' of github.com:dooglus/bitcoin into dooglus-rpcssl-help
Chris Moore [Fri, 21 Jan 2011 19:59:56 +0000]
Merge branch 'rpcssl-help' of github.com:dooglus/bitcoin into dooglus-rpcssl-help

13 years agoThe -rpcssl command line option is a boolean, like -server, -daemon, -testnet, etc...
Chris Moore [Fri, 21 Jan 2011 18:14:33 +0000]
The -rpcssl command line option is a boolean, like -server, -daemon, -testnet, etc.  Specifying -rpcssl=1 is the same as just -rpcssl, as for any other boolean flag, so let's show it the same in the help text.

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

13 years agoAdd const bool VERSION_IS_BETA to serialize.h and use it when formatting the version...
Chris Moore [Fri, 21 Jan 2011 10:37:34 +0000]
Add const bool VERSION_IS_BETA to serialize.h and use it when formatting the version string.  Show the version string in --help text too.

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 agoinclude version information in help output
Marius Hanne [Wed, 19 Jan 2011 21:49:12 +0000]
include version information in help output

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