From c9a7593e07535d9df3194928074eb49ef2ebf4d7 Mon Sep 17 00:00:00 2001 From: CJentzsch Date: Fri, 5 Jun 2015 08:38:58 +0200 Subject: [PATCH] style --- test/TestHelper.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/TestHelper.cpp b/test/TestHelper.cpp index bbe1a5b6d..74a4d063d 100644 --- a/test/TestHelper.cpp +++ b/test/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); }