// If we've finished our initial sync (including getting all the blocks into the chain so as to reduce invalid transactions), start trading transactions & blocks
// Don't like transactions whose gas price is too low. NOTE: this won't stay here forever - it's just until we get a proper gas price discovery protocol going.
if(m_t.gasPrice<m_s.m_currentBlock.minGasPrice)
{
clog(StateChat)<<"Offered gas-price is too low: Require >"<<m_s.m_currentBlock.minGasPrice<<" Got"<<m_t.gasPrice;
clog(StateDetail)<<"Offered gas-price is too low: Require >"<<m_s.m_currentBlock.minGasPrice<<" Got"<<m_t.gasPrice;