diff options
author | winsvega <winsvega@mail.ru> | 2015-04-07 03:38:52 +0800 |
---|---|---|
committer | winsvega <winsvega@mail.ru> | 2015-04-08 02:32:32 +0800 |
commit | dd0cdddd946c036f64d92f000618930c14bf95d5 (patch) | |
tree | 55ae8dc897efa9b9e16c7716c6a2f4b955854628 /TestHelper.cpp | |
parent | 4774ccfb287edc1dc61462c27a1ec5ea8af69673 (diff) | |
download | dexon-solidity-dd0cdddd946c036f64d92f000618930c14bf95d5.tar dexon-solidity-dd0cdddd946c036f64d92f000618930c14bf95d5.tar.gz dexon-solidity-dd0cdddd946c036f64d92f000618930c14bf95d5.tar.bz2 dexon-solidity-dd0cdddd946c036f64d92f000618930c14bf95d5.tar.lz dexon-solidity-dd0cdddd946c036f64d92f000618930c14bf95d5.tar.xz dexon-solidity-dd0cdddd946c036f64d92f000618930c14bf95d5.tar.zst dexon-solidity-dd0cdddd946c036f64d92f000618930c14bf95d5.zip |
Check State
style changes
Diffstat (limited to 'TestHelper.cpp')
-rw-r--r-- | TestHelper.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/TestHelper.cpp b/TestHelper.cpp index 1ff091c1..3d96af42 100644 --- a/TestHelper.cpp +++ b/TestHelper.cpp @@ -115,7 +115,8 @@ void ImportTest::importState(json_spirit::mObject& _o, State& _state, stateOptio json_spirit::mObject o = i.second.get_obj(); ImportStateOptions stateOptions; - u256 balance = 0, nonce = 0; + u256 balance = 0; + u256 nonce = 0; if (o.count("balance") > 0) { |