Make sure json output array order is consistent

The source of the "contractDependencies" value was an std::map, thus
order was more or less random.
This commit is contained in:
Mathias Baumann
2019-08-19 17:42:03 +02:00
parent 5e2a31f43b
commit 0e3ff25b4e
6 changed files with 549 additions and 6 deletions
@@ -0,0 +1,7 @@
contract A { }
contract B is A { }
contract C is B { }
contract D is C { }
contract E is D { }
// ----