Browse Source

style

cl-refactor
CJentzsch 10 years ago
parent
commit
741b56c960
  1. 3
      libethereum/Client.cpp
  2. 5
      test/libethereum/gaspricer.cpp

3
libethereum/Client.cpp

@ -25,9 +25,6 @@
#include <thread>
#include <boost/filesystem.hpp>
#include <boost/math/distributions/normal.hpp>
#include <boost/multiprecision/number.hpp>
#include <boost/multiprecision/cpp_int.hpp>
#include <boost/multiprecision/cpp_dec_float.hpp>
#include <libdevcore/Log.h>
#include <libdevcore/StructuredLogger.h>
#include <libp2p/Host.h>

5
test/libethereum/gaspricer.cpp

@ -27,7 +27,6 @@
#include "../TestHelper.h"
using namespace std;
//using namespace json_spirit;
using namespace dev;
using namespace dev::eth;
@ -46,8 +45,6 @@ void executeGasPricerTest(const string name, double _etherPrice, double _blockFe
BOOST_CHECK_EQUAL(gp.ask(State()), _expectedAsk);
BOOST_CHECK_EQUAL(gp.bid(_txPrio), _expectedBid);
}
} }
BOOST_AUTO_TEST_SUITE(GasPricer)
@ -140,6 +137,4 @@ BOOST_AUTO_TEST_CASE(basicGasPricer_highGasUsage_HighestPrio)
{
dev::test::executeGasPricerTest("highGasUsage", 30.679, 15.0, "/BlockTests/bcGasPricerTest.json", TransactionPriority::Highest, 15731290119, 30000000000000);
}
BOOST_AUTO_TEST_SUITE_END()

Loading…
Cancel
Save