# Gavin Andresen # 2010-10-22 15:19:58 # https://bitcointalk.org/index.php?topic=1536.msg18077#msg18077 svn rev 172 (bitcoin 0.3.14.01) adds: @p{par} "testnet" and "keypoololdest" to getinfo output. testnet will be true if you are running on the test network. @p{brk} keypoololdest is the Unix timestamp of the oldest entry in the keypool. @p{par} For example: @p{brk} Code: ./bitcoind getinfo @p{brk} { @p{brk} "version" : 31401, @p{brk} "balance" : 100.63000000, @p{brk} "blocks" : 86925, @p{brk} "connections" : 1, @p{brk} "proxy" : "", @p{brk} "generate" : true, @p{brk} "genproclimit" : 1, @p{brk} "difficulty" : 2149.02181495, @p{brk} "hashespersec" : 998425, @p{brk} "testnet" : false, @p{brk} "keypoololdest" : 1286757166, @p{brk} "errors" : "" @p{brk} } @p{brk} @p{brk} I also made bitcoin return proper HTTP Date: headers to better follow the HTTP spec. @p{brk}