# Gavin Andresen # 2010-12-16 01:22:50 # https://bitcointalk.org/index.php?topic=2306.msg30540#msg30540 I just committed svn rev 103. Changes are: @p{par} listaccounts : lists all the accounts in your wallet along with their current balances. @p{par} listtransactions : call it with no arguments, or give it '*' as the account name, and it lists the last N (default 10, as before) transactions from all accounts. Part of this change is disallowing '*' as an account name. @p{par} -rpctimeout : Thanks to Mt`AwAy who pointed out that, if somebody was allowed to connect to the bitcoin rpc port (via -rpcallowip), then they could connect, do nothing, and hang the connection, causing a denial-of-RPC-service. Now bitcoin's RPC thread will close the connection if it doesn't get the HTTP request within -rpctimeout (default 30) seconds. @p{brk}