aboutsummaryrefslogtreecommitdiff
path: root/rpc.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Fix CRLFGavin Andresen2010-07-141-986/+986
|
* Laszlo's fix to make generate threads idle priority on Linux,s_nakamoto2010-07-081-10/+12
| | | | replaced some wxBase dependencies: wxMutex, wxFileExists, wxStandardPaths, wxGetLocalTimeMillis
* automatically change displayed address whenever it receives anything,s_nakamoto2010-06-101-74/+123
| | | | | | | | added help and -? for daemon command line rpc commands, only relay addr messages to 5 random nodes to save bandwidth, started setting wtx.fFromMe flag, trickle out tx inventory messages to protect privacy -- version 0.2.10
* better prevention of inventory relaying during initial download,s_nakamoto2010-05-261-54/+251
| | | | | | | message checksum between nodes with 0.2.9 or higher, optimization level up from -O0 to -O2, rpc functions: setlabel, getlabel, getaddressesbylabel, getreceivedbyaddress, getreceivedbylabel, listreceivedbyaddress, listreceivedbylabel -- version 0.2.9
* Mac OS build fixes by laszlos_nakamoto2010-05-191-9/+14
| | | | -- version 0.2.8
* GUI-less build target bitcoind that links to wxBase and shouldn't need GTK,s_nakamoto2010-02-251-5/+5
| | | | | | split init and shutdown from ui.cpp into init.cpp, support wxUSE_GUI=0 -- version 0.2.7
* run as daemon without GUI,s_nakamoto2010-02-231-21/+113
| | | | | | | hooked wxApp::Initialize to ignore gtk-init-check failure if no GUI, fork to daemonize, rpc getinfo, getconnectioncount, getbalance, getgenerate, setgenerate, -- version 0.2.6
* renamed a few rpc methodss_nakamoto2010-02-141-13/+13
|
* Workaround for bug on wxWidgets 2.9.0 Ubuntu 9.10 64-bit where first ↵s_nakamoto2010-02-141-1/+1
| | | | character of the hidden columns were displayed so status column had three numbers overprinted. Fixed by adding a leading space to the hidden columns. 64-bit compile with wxWidgets 2.9.0 seems to be fully working normally now.
* command line and JSON-RPC first draft, requires Boost 1.35 or higher for ↵s_nakamoto2010-02-121-0/+641
boost::asio, added SetBitcoinAddress and GetBitcoinAddress methods on CScript, critsect interlocks around mapAddressBook, added some random delays in tx broadcast to improve privacy, now compiles with MSVC 8.0