From 06890e5428749c2bc94e6b58cdc2d0bdff0ee4fd Mon Sep 17 00:00:00 2001 From: chriseth Date: Fri, 22 May 2015 14:19:58 +0200 Subject: [PATCH] Commandline interface for gas estimation. --- GasMeter.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GasMeter.h b/GasMeter.h index 95593b565..6949c193e 100644 --- a/GasMeter.h +++ b/GasMeter.h @@ -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; }