aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGav Wood <i@gavwood.com>2015-03-07 23:43:05 +0800
committerGav Wood <i@gavwood.com>2015-03-07 23:43:05 +0800
commita2ca8cefb7bf542e7256cf5645575d9dc945589f (patch)
treef47b235e4856440ec32182ea61737da4d8548826
parent986fdb9d5fef87769caa140d9b4903178cf1874a (diff)
downloaddexon-solidity-a2ca8cefb7bf542e7256cf5645575d9dc945589f.tar.gz
dexon-solidity-a2ca8cefb7bf542e7256cf5645575d9dc945589f.tar.zst
dexon-solidity-a2ca8cefb7bf542e7256cf5645575d9dc945589f.zip
Gas pricing infrastructure and a couple of pricing mechanisms.
-rw-r--r--blockchain.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/blockchain.cpp b/blockchain.cpp
index ccbc8495..0e1128ef 100644
--- a/blockchain.cpp
+++ b/blockchain.cpp
@@ -87,7 +87,7 @@ void doBlockchainTests(json_spirit::mValue& _v, bool _fillin)
// get txs
TransactionQueue txs;
- GasPricer gp(10000);
+ TrivialGasPricer gp;
BOOST_REQUIRE(blObj.count("transactions"));
for (auto const& txObj: blObj["transactions"].get_array())
{