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
@@ -0,0 +1,26 @@
contract test {
function f() public {}
function g() public payable {}
}
// ----
// :test
// [
// {
// "constant": false,
// "inputs": [],
// "name": "f",
// "outputs": [],
// "payable": false,
// "stateMutability": "nonpayable",
// "type": "function"
// },
// {
// "constant": false,
// "inputs": [],
// "name": "g",
// "outputs": [],
// "payable": true,
// "stateMutability": "payable",
// "type": "function"
// }
// ]