// 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(StateDetail)<<"Offered gas-price is too low: Require >"<<m_s.m_currentBlock.minGasPrice<<" Got"<<m_t.gasPrice();
@ -37,12 +37,16 @@ extern u256 const c_sstoreResetGas; ///< Once per SSTORE operation if the zeron
externu256constc_sstoreRefundGas;///< Refunded gas, once per SSTORE operation if the zeroness changes to zero.
externu256constc_sstoreRefundGas;///< Refunded gas, once per SSTORE operation if the zeroness changes to zero.
externu256constc_createGas;///< Once per CREATE operation & contract-creation transaction.
externu256constc_createGas;///< Once per CREATE operation & contract-creation transaction.
externu256constc_callGas;///< Once per CALL operation & message call transaction.
externu256constc_callGas;///< Once per CALL operation & message call transaction.
externu256constc_expGas;///< Once per EXP instuction.
externu256constc_expByteGas;///< Times ceil(log256(exponent)) for the EXP instruction.
externu256constc_memoryGas;///< Times the address of the (highest referenced byte in memory + 1). NOTE: referencing happens on read, write and in instructions such as RETURN and CALL.
externu256constc_memoryGas;///< Times the address of the (highest referenced byte in memory + 1). NOTE: referencing happens on read, write and in instructions such as RETURN and CALL.
externu256constc_txDataGas;///< Per byte of data attached to a transaction. NOTE: Not payable on data of calls between transactions.
externu256constc_txDataZeroGas;///< Per byte of data attached to a transaction that equals zero. NOTE: Not payable on data of calls between transactions.
externu256constc_txDataNonZeroGas;///< Per byte of data attached to a transaction that is not equal to zero. NOTE: Not payable on data of calls between transactions.
externu256constc_txGas;///< Per transaction. NOTE: Not payable on data of calls between transactions.
externu256constc_txGas;///< Per transaction. NOTE: Not payable on data of calls between transactions.
externu256constc_logGas;///< Per LOG* operation.
externu256constc_logGas;///< Per LOG* operation.
externu256constc_logDataGas;///< Per byte in a LOG* operation's data.
externu256constc_logDataGas;///< Per byte in a LOG* operation's data.
externu256constc_logTopicGas;///< Multiplied by the * of the LOG*, per LOG transaction. e.g. LOG0 incurs 0 * c_txLogTopicGas, LOG4 incurs 4 * c_txLogTopicGas.
externu256constc_logTopicGas;///< Multiplied by the * of the LOG*, per LOG transaction. e.g. LOG0 incurs 0 * c_txLogTopicGas, LOG4 incurs 4 * c_txLogTopicGas.
externu256constc_copyGas;///< Multiplied by the number of 32-byte words that are copied (round up) for any *COPY operation and added.