diff options
author | chriseth <chris@ethereum.org> | 2017-08-24 21:08:31 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2017-09-16 19:31:12 +0800 |
commit | 6385641f6e461a1964da793956fbe0ef8cddadd3 (patch) | |
tree | 249b9de69b5c799bbe35032ff6820780ea790a58 /test/libsolidity/SolidityABIJSON.cpp | |
parent | 44825d1c1ecef6ea3fa27da6330c12dcf4279fb3 (diff) | |
download | dexon-solidity-6385641f6e461a1964da793956fbe0ef8cddadd3.tar.gz dexon-solidity-6385641f6e461a1964da793956fbe0ef8cddadd3.tar.zst dexon-solidity-6385641f6e461a1964da793956fbe0ef8cddadd3.zip |
Fix tests.
Diffstat (limited to 'test/libsolidity/SolidityABIJSON.cpp')
-rw-r--r-- | test/libsolidity/SolidityABIJSON.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/libsolidity/SolidityABIJSON.cpp b/test/libsolidity/SolidityABIJSON.cpp index 5ddd28ad..e4ab54ec 100644 --- a/test/libsolidity/SolidityABIJSON.cpp +++ b/test/libsolidity/SolidityABIJSON.cpp @@ -981,6 +981,7 @@ BOOST_AUTO_TEST_CASE(return_structs) } ], "payable" : false, + "stateMutability" : "nonpayable", "type" : "function" }] )"; @@ -1022,6 +1023,7 @@ BOOST_AUTO_TEST_CASE(return_structs_with_contracts) } ], "payable": false, + "stateMutability" : "nonpayable", "type": "function" }] )"; @@ -1127,6 +1129,7 @@ BOOST_AUTO_TEST_CASE(structs_in_libraries) "name": "g", "outputs": [], "payable": false, + "stateMutability": "nonpayable", "type": "function" }, { @@ -1140,6 +1143,7 @@ BOOST_AUTO_TEST_CASE(structs_in_libraries) "name": "f", "outputs": [], "payable": false, + "stateMutability": "nonpayable", "type": "function" }] )"; |