# Gavin Andresen # 2012-08-30 15:09:54 # https://bitcointalk.org/index.php?topic=104173.msg1146502#msg1146502 @s{quotedtext} @s{quotedtext} Solo miners, miners using p2pol, and mining pool operators will eventually have to upgrade. @p{par} RE: "Is there any web service to see the current ratio of v1 / v2?" @p{par} I bet if you ask nicely blockchain.info will create a page. I expect it to take a long time (a year or more) before 95% of the hashing power has upgraded and is producing v2 blocks. @p{par} The getblock RPC call will tell you a block's version number; if you're an old bash user like me then you can do something like: @p{brk} Code: last=$(./bitcoind getblockcount); @p{brk} for (( i=last-100; i @p{lt}= last; i=i+1 )); do echo -n $i; ./bitcoind getblock $(./bitcoind getblockhash $i) | grep version; done ... to see the version numbers of the last 100 blocks (I see 2 of 100 right now). @p{par}