mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Automated ABI Json tests.
This commit is contained in:
@@ -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"
|
||||
// }
|
||||
// ]
|
||||
Reference in New Issue
Block a user