Automated ABI Json tests.

This commit is contained in:
chriseth
2019-07-02 18:11:49 +02:00
parent 776fec1913
commit a4ef435c07
30 changed files with 1137 additions and 1088 deletions
+28
View File
@@ -0,0 +1,28 @@
contract test {
function f(uint a) public returns (uint d) { return a * 7; }
}
// ----
// :test
// [
// {
// "constant": false,
// "inputs":
// [
// {
// "name": "a",
// "type": "uint256"
// }
// ],
// "name": "f",
// "outputs":
// [
// {
// "name": "d",
// "type": "uint256"
// }
// ],
// "payable": false,
// "stateMutability": "nonpayable",
// "type": "function"
// }
// ]