aboutsummaryrefslogtreecommitdiffstats
path: root/TestHelper.cpp
diff options
context:
space:
mode:
authorCJentzsch <jentzsch.software@gmail.com>2015-06-05 14:38:58 +0800
committerCJentzsch <jentzsch.software@gmail.com>2015-06-05 14:38:58 +0800
commitae454a9a04298336facee46c85da3319257d20cf (patch)
tree7a3eacccbbc408334cf82dc3b9dfdd1f468c6d80 /TestHelper.cpp
parent5c69bbfdc813cc15557e1410d2187d220550ff59 (diff)
downloaddexon-solidity-ae454a9a04298336facee46c85da3319257d20cf.tar.gz
dexon-solidity-ae454a9a04298336facee46c85da3319257d20cf.tar.zst
dexon-solidity-ae454a9a04298336facee46c85da3319257d20cf.zip
style
Diffstat (limited to 'TestHelper.cpp')
-rw-r--r--TestHelper.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/TestHelper.cpp b/TestHelper.cpp
index bbe1a5b6..74a4d063 100644
--- a/TestHelper.cpp
+++ b/TestHelper.cpp
@@ -266,14 +266,14 @@ void ImportTest::importTransaction(json_spirit::mObject& _o)
{
m_transaction = Transaction(transactionRLP.data(), CheckTransaction::Everything);
}
- catch(InvalidSignature)
+ catch (InvalidSignature)
{
// create unsigned transaction
m_transaction = _o["to"].get_str().empty() ?
Transaction(toInt(_o["value"]), toInt(_o["gasPrice"]), toInt(_o["gasLimit"]), importData(_o), toInt(_o["nonce"])) :
Transaction(toInt(_o["value"]), toInt(_o["gasPrice"]), toInt(_o["gasLimit"]), Address(_o["to"].get_str()), importData(_o), toInt(_o["nonce"]));
}
- catch(Exception& _e)
+ catch (Exception& _e)
{
cnote << "invalid transaction" << boost::diagnostic_information(_e);
}