Commandline interface for gas estimation.

This commit is contained in:
chriseth 2015-05-22 14:19:58 +02:00
parent dadde12178
commit 06890e5428

View File

@ -86,7 +86,7 @@ private:
inline std::ostream& operator<<(std::ostream& _str, GasMeter::GasConsumption const& _consumption)
{
if (_consumption.isInfinite)
return _str << "inf";
return _str << "[???]";
else
return _str << std::dec << _consumption.value;
}